Microsoft MS-600 Building Applications and Solutions with Microsoft 365 Core Services Online Training
Microsoft MS-600 Online Training
The questions for MS-600 were last updated at Nov 23,2024.
- Exam Code: MS-600
- Exam Name: Building Applications and Solutions with Microsoft 365 Core Services
- Certification Provider: Microsoft
- Latest update: Nov 23,2024
DRAG DROP
You are developing a web app that will display emails from the Microsoft 365 mailbox of the current signed-in user.
For performance reasons, you do not want all the emails to be loaded simultaneously, rather page-by-page as the user navigates the app.
You plan to display 30 emails per page. The most recent emails must be displayed first.
How should you complete the query parameters for the REST request to display the third page of emails? To answer, drag the appropriate query parameters to the correct targets. Each query parameter may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content. NOTE: Each correct selection is worth one point.
Explanation:
A picture containing diagram
Description automatically generated
Box 1: top
Number of items to return in a result
Box 2: skip
$skip Indexes into a result set. Also used by some APIs to implement paging and can be used together with $top to manually page results.
You have a custom API that is secured by using Azure Active Directory (Azure AD). You need to call the API from within a SharePoint Framework (SPFx) web part.
Which object should you use to call the API?
- A . AadHttpClient
- B . MSGraphClient
- C . SPMttpCHent
- D . XMLHttpRequest
B
Explanation:
By using the AadHttpClient, you can easily connect to APIs secured by using Azure AD without having to implement the OAuth flow yourself.
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/use-aadhttpclient
HOTSPOT
You are building an app that will use Microsoft Graph to retrieve the users in the finance department of your company.
How should you complete the request URL? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
HOTSPOT
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.
Explanation:
Graphical user interface, text, application
Description automatically generated
Box 1: No
Box 2: No
The manifest is in XML format.
Box 3: Yes
Source Location is required and specifies the source file location(s) for your Office Add-in as a URL between 1 and 2018 characters long. The source location must be an HTTPS address, not a file path.
References:
https://docs.microsoft.com/en-us/office/dev/add-ins/develop/add-in-manifests
https://docs.microsoft.com/en-us/office/dev/add-ins/reference/manifest/sourcelocation
HOTSPOT
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.
Explanation:
Graphical user interface, text, email
Description automatically generated
You are developing a serveries application that reads all the emails in the Inbox of a specific Microsoft 365 mailbox. Some emails contain meeting dates and room mailbox names.
The application has the following requirements:
- A . Option A
- B . Option B
- C . Option C
- D . Option D
HOTSPOT
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.
Explanation:
Graphical user interface, text, application, email
Description automatically generated
HOTSPOT
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.
Explanation:
Graphical user interface, text, application, email
Description automatically generated
11.0. You need to ensure that WebPartA can be installed as an app in Microsoft Teams.
What should you do?
- A . Update the WebPartA.manifest.json file.
- B . Update the Config.json file.
- C . Upload WebPartA to the Microsoft Teams app catalog.
- D . From a command prompt, run the yo @microsoft/sharepoint command.
A
Explanation:
Update the web part manifest to make it available for Microsoft Teams.
Locate the ./src/webparts/**/manifest.json file for the web part you’ll use as the tab for the meeting app solution. Locate the supportedHosts property to include "TeamsTab".
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/build-for-teams-meeting-app#update-the-web-part-manifest-to-make-it-available-for-microsoft-teams
You need to develop a client-side web app that will be registered with the Microsoft identity platform.
Which type of authorization flow should you use?
- A . authorization code grant
- B . device code grant
- C . implicit grant
- D . client credentials grant