Prepare Top Microsoft MS-600 Exam Study Guide Practice Questions Edition [Q67-Q83]

Share

Prepare Top Microsoft MS-600 Exam Study Guide Practice Questions Edition

Go to MS-600 Questions - Try MS-600 dumps pdf

NEW QUESTION # 67
You receive the following JSON document when you use Microsoft Graph to query the current signed-in user.

For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation
Graphical user interface, text, application Description automatically generated

Box 1: Yes
Syntax: GET /me/photo/$value
Get the specified profilePhoto or its metadata (profilePhoto properties).
Example: Get the photo for the signed-in user in the largest available size GET https://graph.microsoft.com/v1.0/me/photo/$value Box 2: Yes Syntax: GET /users/{id | userPrincipalName}/photo/$value Get the specified profilePhoto or its metadata (profilePhoto properties).
Box 3: Yes
Syntax: GET /users/{id | userPrincipalName}/photo/$value
Get the specified profilePhoto or its metadata (profilePhoto properties).
Reference: https://docs.microsoft.com/en-us/graph/api/profilephoto-get


NEW QUESTION # 68
You company has a third-party invoicing web app.
You need to display the app within Microsoft Teams for one user only. The app will not require conversational interactions.
How should you display the app by using the minimum amount of effort?

  • A. Instruct the user to add a website tab
  • B. Create a SharePoint Framework (SPFx) web part
  • C. Instruct the user to add an App Studio app
  • D. Create a search-based messaging extension

Answer: A

Explanation:
Explanation
There are currently three methods of app integration in Teams: Connectors, Bots, and Tabs. Tabs offer more extensive integration by allowing you to view entire third-party services within Microsoft Teams.
Reference: https://www.sherweb.com/blog/office-365/o365-microsoft-teams-apps/


NEW QUESTION # 69
You are building a Microsoft teams application by using an outgoing webhook.
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:


NEW QUESTION # 70
You need to configure the initial login request in the access token JavaScript script.
Which code segment should you insert at line 01?

  • A. const accessTokenRequest = {
    scopes: ['https://graph.microsoft.com/Files.ReadWrite',
    'https://graph.microsoft.com/Mail.Send']
    };
  • B. const accessTokenRequest = {
    };
  • C. const scopes = ['https://graph.microsoft.com/Files.Read.All',
    'https://graph.microsoft.com/Mail.Send.All'];
  • D. const scopes = ['https://graph.microsoft.com/.default'];

Answer: A

Explanation:
Explanation
Scenario: ADatum identifies the following technical requirements for the planned E-invoicing capabilities:
* Ensure that all operations performed by E-invoicing against Office 365 are initiated by a user. Require that the user authorize E-invoicing to access the Office 365 data the first time the application attempts to access Office 365 data on the user's behalf.
Reference: https://docs.microsoft.com/en-us/graph/permissions-reference


NEW QUESTION # 71
You are developing an Azure function to provision a team in Microsoft Teams.
You need to create a group named Project A, add a classification of Private to the group, and then convert Project A to a team group.
How should you complete the REST requests? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation


Box 1: post
You need to create a group named Project A.
The following example creates an Office 365 group.
POST https://graph.microsoft.com/v1.0/groups
Content-type: application/json
Content-length: 244
{
"description": "Self help community for library",
"displayName": "Library Assist",
"groupTypes": [
"Unified"
],
"mailEnabled": true,
"mailNickname": "library",
"securityEnabled": false
}
Box 2: PATCH
Add a classification of Private to the group.
You can set the classification property in a PATCH request for the group, if do not set it in the initial POST request that creates the group.
Box 3: put
Then convert Project A to a team group.
Syntax: PUT /groups/{id}/team
References: https://docs.microsoft.com/en-us/graph/api/group-post-groups
https://docs.microsoft.com/en-us/graph/api/resources/group
https://docs.microsoft.com/en-us/graph/api/team-put-teams


NEW QUESTION # 72
You have an app that queries Azure Active Directory (Azure AD) by using the Microsoft Graph API.
You need to minimize the number of times users are prompted for their credentials.
How should you complete the code? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Reference:
https://docs.microsoft.com/en-us/java/api/com.microsoft.identity.client.publicclientapplication.acquiretokensilent?view=azure-java-stable
https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-error-handling-js


NEW QUESTION # 73
You plan to build a tab extension for Microsoft Teams that will display a list of assets and enable users to make reservations.
When a user reserves an asset, a form must be displayed that enables the user to make a reservation by selecting a date and duration, as well as other preferences.
Which type of extension should you use?

  • A. a task module
  • B. a messaging extension
  • C. a personal tab
  • D. a full-width column web part

Answer: C


NEW QUESTION # 74
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation

Box 1: Yes
As part of your app you can add custom tabs to embed your own web content in Teams, and using the Teams JavaScript client SDK, add Teams-specific functionality to your web content.
Box 2: Yes
You can use the Office JavaScript API to create task pane or content add-ins for Office 2013 host applications.
Box 3: Yes
You can use the Office JavaScript API to create task pane or content add-ins for Office 2013 host applications.
Reference: https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/what-are-tabs
https://docs.microsoft.com/en-us/office/dev/add-ins/develop/support-for-task-pane-and-content-add-ins


NEW QUESTION # 75
Which URI should you use to query all the emails that relate to an invoice?

  • A. Option A
  • B. Option C
  • C. Option B
  • D. Option D

Answer: A


NEW QUESTION # 76
You have a conversational bot that retrieves files from the Microsoft OneDrive of users.
You are adding functionality to the bot to enable the bot to retrieve files from other cloud storage providers.
What should you configure to ensure that the bot can access the other cloud storage providers on behalf of the users?

  • A. Add a new site to the channels of the Bot Channels Registration.
  • B. Add OAuth Connection Settings to the Bot Channels Registration.
  • C. Generate a new client certificate for the Azure AD application.
  • D. Modify the API permissions of the Azure AD application.

Answer: B

Explanation:
Explanation
This option allows you to configure how your bot can access other cloud storage providers on behalf of the users by using OAuth 2.0 protocol456. You need to provide a name for the connection, select a service provider, and enter the client ID and secret of your Azure AD application.


NEW QUESTION # 77
You have an application that employees use to schedule vacations. The application sets an automatic reply and an out-of-office event in the employees' Microsoft 365 calendar.
Employees who access the application from a mobile device report that the application is slow to make changes.
You need to replace the application calls to use a batched request. Automatic reply must be set only if an out-of-office event is set successfully.
How should you complete the batch request? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:
Explanation
Text Description automatically generated with medium confidence

Diagram Description automatically generated


NEW QUESTION # 78
What is the default permission scope when you request an access token by using MSGraphClient?

  • A. User.Read
  • B. People.Read
  • C. User.Read.All
  • D. People.Read.All

Answer: C

Explanation:
Explanation/Reference:
Explanation:
By default, the service principal has no explicit permissions granted to access the Microsoft Graph. However, if you request an access token for the Microsoft Graph, you get a token with the user_impersonation permission scope that can be used for reading information about the users (that is, User.Read.All).
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/use-msgraph Extend Teams Question Set 1


NEW QUESTION # 79
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You are developing a new application named App1 that uses the Microsoft identity platform to authenticate to Azure Active Directory (Azure AD).
Currently, App1 can read user profile information.
You need to allow App1 to read the user's calendar.
Solution: In the code of App1, dynamically request the Calendar.Read permission from the Microsoft Graph API.
Does this meet the goal?

  • A. Yes
  • B. No

Answer: B

Explanation:
For your app to access data in Microsoft Graph, the user or administrator must grant it the correct permissions via a consent process.
Application permissions can only be consented by an administrator.
Reference:
https://docs.microsoft.com/en-us/graph/permissions-reference


NEW QUESTION # 80
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You need to deploy a Microsoft Teams app. The app will create a Microsoft Teams personal tab that displays a website.
Solution: From the Microsoft Teams client, you add a new tab, you select the Website app, and then you enter the URL of the website.
Does this meet the goal?

  • A. Yes
  • B. No

Answer: B

Explanation:
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/create-personal-tab?tabs=nodejs


NEW QUESTION # 81
You need to develop a conversational bot in Microsoft Teams.
Which three actions should you perform in sequence? To answer, move the appropriate actions from the list of actions to the answer area and arrange them in the correct order.

Answer:

Explanation:

1 - Create a web service.....
2 - Create a Microsoft...
3 - Upload the package...
Reference:
https://www.sharepointeurope.com/step-by-step-configure-bot-to-work-in-teams-and-with-microsoft-graph/


NEW QUESTION # 82
Your company has a sales system that emails an alert to all the members of the sales department when a new sale is made.
You need to ensure that a notification is posted to a team channel when a new sale is made. The solution must minimize development effort.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Get an incoming webhook for the channel.
  • B. Set the configurationUrl property of a connector in the manifest.
  • C. Post JSON to the webhook URL from the existing sales system.
  • D. Post XML to the webhook URL from the existing sales system.

Answer: A,C

Explanation:
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webh


NEW QUESTION # 83
......


What is the duration, language, and format of MS-600: Building Applications and Solutions with Microsoft 365 Core Services (beta) Exam

  • Passing Score: 70 %
  • This is beta exam.
  • It is a beta exam
  • language: English
  • Type of Questions: This test format is multiple choice.
  • Length of Examination: 50 mins

 

Free Microsoft 365 Certified: Developer Associate MS-600 Exam Question: https://skillsoft.braindumpquiz.com/MS-600-exam-material.html