MS-600 Pre-Exam Practice Tests (Updated 143 Questions) [Q60-Q77]

Share

MS-600 Pre-Exam Practice Tests | (Updated 143 Questions)

Valid MS-600 Exam Q&A PDF - One Year Free Update

NEW QUESTION 60
You are building a new tab as part of a new Microsoft Teams application. Users will experience the tab privately.
How should you complete the application manifest? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

 

NEW QUESTION 61
What should you add to a SharePoint Framework (SPFx) solution to ensure that the solution can be used as a Microsoft Teams tab?

  • A. the TeamsTab value to the supportedHosts property in the manifest file
  • B. a manifest file to the webparts folder in the solution
  • C. the TeamsTab value to the componentType property in the manifest file
  • D. a manifest file to the Teams folder in the solution

Answer: B

Explanation:
You need to update the web part manifest to make it available for Microsoft Teams. Locate the manifest json file for the web part you want to make available to Teams and modify the supportedHosts properties to include "TeamsTab".

 

NEW QUESTION 62
This question requires that you evaluate the underlined BOLD text to determine if it is correct.
You develop a Microsoft Teams application that uses a messaging extension.
Users can invoke the messaging extension from the Teams sidebar menu.
Instructions: Review the underlined text. If it makes the statement correct, select "No change is needed". If the statement is incorrect, select the answer choice that makes the statement correct.

  • A. by using the Manage teams option for a team
  • B. No change is needed
  • C. by using the Add a tab option in the Teams channel
  • D. from the compose box of a Teams chat

Answer: D

Explanation:
In the app manifest for your Microsoft Teams app you'll define a single messaging extension with up to ten different commands. Each command defines a type (action or search), and the locations in the client it can be invoked from (compose message area, command bar, and/or message).

 

NEW QUESTION 63
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: You create a Microsoft Teams manifest file that includes a staticTabs section containing the name, ID, and content URL of the website.
Does this meet the goal?

  • A. No
  • B. Yes

Answer: B

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

 

NEW QUESTION 64
You are evaluating the SharePoint Framework (SPFx) ListView Command Set extension.
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
Extensions are client-side components that run inside the context of a SharePoint page.
Box 2: Yes
ClientSideExtension.ListViewCommandSet.CommandBar: The top command set menu in a list or library.
Box 3: Yes
ClientSideExtension.ListViewCommandSet.ContextMenu: The context menu of the item(s).
Reference:
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-cmdset-with-dialog-

 

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

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

Answer: D

Explanation:
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

 

NEW QUESTION 66
You have a custom Microsoft Word add-in that was written by using Microsoft Visual Studio Code.
A user reports that there is an issue with the add-in.
You need to debug the add-in for Word Online.
What should you do before you begin debugging in Visual Studio Code?

  • A. Publish the manifest to the Microsoft SharePoint app catalog
  • B. Sideload the add-in
  • C. Disable script debugging in your web browser
  • D. Add the manifest path to the trusted catalogs

Answer: A

Explanation:
Debug your add-in from Excel or Word on the web
To debug your add-in by using Office on the web (see step 3):
8. Deploy your add-in to a server that supports SSL.
9. In your add-in manifest file, update the SourceLocation element value to include an absolute, rather than a relative, URI.
10.Upload the manifest to the Office Add-ins library in the app catalog on SharePoint.
11.Launch Excel or Word on the web from the app launcher in Office 365, and open a new document.
12.On the Insert tab, choose My Add-ins or Office Add-ins to insert your add-in and test it in the app.
13.Use your favorite browser tool debugger to debug your add-in.
Reference: https://docs.microsoft.com/en-us/office/dev/add-ins/testing/debug-add-ins-in-office-online

 

NEW QUESTION 67
You are developing an application that will use Microsoft Graph.
You attempt to retrieve a list of the groups in your organization by using a URI of
https://graph.microsoft.eom/vi.0/groups on behalf of the user.
The application fails. The diagnostic logs show the following information:
* An HTTP 403 Forbidden status code
* An Authorization_RequestDenied error code
* The following error message: "Insufficient privileges to complete the operation." You need to ensure that the application can retrieve the list of groups. The solution must use the principle of least privilege. Which two actions should you perform? Each correct answer presents part of the solution.
NOTE; Each correct selection is worth one point.

  • A. In the permission request for the application, request the Group. Readwrite. All permission
  • B. Configure the application to use application permissions.
  • C. In the permission request for the application, request the Group. Read. All permission.
  • D. Grant tenant admin consent for the Group.Read. All permission.

Answer: A,C

 

NEW QUESTION 68
You are developing an interactive invoicing application that will be used by end users. The application will have the following features:
Save invoices generated by a user to the user's Microsoft OneDrive.
Email daily automated reminders.
You need to identify which permissions to grant for the application features. The solution must use the principle of least privilege.
Which permission should you grant for each feature? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

 

NEW QUESTION 69
You are creating an app manifest for Microsoft Teams.
You need to create a team tab and a personal tab. The team tab must be scoped for group chat.
How should you complete the manifest? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

 

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

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

Answer: D

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).

 

NEW QUESTION 71
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: No
Box 2: Yes
Partial table lists the events that your bot can receive and take action on.

Box 3: Yes
The messageReaction event is sent when a user adds or removes his or her reaction to a message which was originally sent by your bot.
Reference: https://docs.microsoft.com/en-us/microsoftteams/platform/resources/bot-v3/bots-notifications

 

NEW QUESTION 72
You have a single-page application (SPA) named TodoListSPA and a server-based web app named TodoListService.
The permissions for the TodoList SPA API are configured as shown in the TodoList SPA exhibit. (Click the TodoListSPA tab.)

The permissions for the TodoListService API are configured as shown in the TodoListService exhibit. (Click the TodoListService tab.)

You need to ensure that TodoListService can access a Microsoft OneDrive file of the signed-in user. The solution must use the principle of least privilege.
Which permission should to grant?

  • A. the Sites.Read.All delegated permission for TodoListService
  • B. the Sites.Read.All delegated permission for TodoListSpa
  • C. the Sites.Read.All application permission for TodoListSPA
  • D. the Sites.Read.All application permission for TodoListService

Answer: A

Explanation:
A client application gains access to a resource server by declaring permission requests. Two types are available:
"Delegated" permissions, which specify scope-based access using delegated authorization from the signed-in resource owner, are presented to the resource at run-time as "scp" claims in the client's access token.
"Application" permissions, which specify role-based access using the client application's credentials/identity, are presented to the resource at run-time as "roles" claims in the client's access token.

 

NEW QUESTION 73
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 74
You are developing a SharePoint Framework (SPFx) solution.
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 75
You plan to create a single-tenant console app that will use the Microsoft identity platform.
You need to ensure that the app can use the device code flow to access Microsoft Graph and read email on behalf of the authenticated user.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Add redirect URIs.
  • B. Generate a client secret for the app.
  • C. Set Supported account types to Accounts in any organizational directory
  • D. Enable the Default client type option.
  • E. Set Supported account types to Accounts in this organizational directory only
  • F. From the Expose an API settings, create a custom scope.

Answer: A,B,C

Explanation:
Reference:
https://docs.microsoft.com/en-us/graph/auth-register-app-v2
https://docs.microsoft.com/en-us/graph/auth-v2-u

 

NEW QUESTION 76
You are building a Microsoft Outlook add-in.
Which object should you use to save a user's preferences between sessions and devices?

  • A. RoamingSettlngs
  • B. CustomXMLParts
  • C. CustomProperties
  • D. localStorage

Answer: C

 

NEW QUESTION 77
......

Building Applications and Solutions with Microsoft 365 Core Services Free Update Certification Sample Questions: https://www.realexamfree.com/MS-600-real-exam-dumps.html

Trend for Microsoft MS-600 pdf dumps before actual exam: https://drive.google.com/open?id=1J3qYSY329UY9y7D1pzmr-8Bz1V5Ke2EO