[23-Aug-2022 Update] Exam MS-600 VCE Dumps and MS-600 PDF Dumps from PassLeader

Valid MS-600 Dumps shared by PassLeader for Helping Passing MS-600 Exam! PassLeader now offer the newest MS-600 VCE dumps and MS-600 PDF dumps, the PassLeader MS-600 exam questions have been updated and ANSWERS have been corrected, get the newest PassLeader MS-600 dumps with VCE and PDF here: https://www.passleader.com/ms-600.html (245 Q&As Dumps –> 267 Q&As Dumps)

BTW, DOWNLOAD part of PassLeader MS-600 dumps from Cloud Storage: https://drive.google.com/open?id=1W-iyXtc7KMN9YngXGt6aZAlkJ-3WUlos

NEW QUESTION 177
You plan to develop a client-side JavaScript web app that will be registered to the Microsoft identity platform and use Microsoft Authentication Library (MSAL) v2.0. Which type of authorization flow should you use?

A.    client credentials grant
B.    device code
C.    resource owner password credentials grant
D.    authorization code grant

Answer: D
Explanation:
Authorization code – User sign-in and access to web APIs on behalf of the user. Supported application types:
– Desktop
– Mobile
– Single-page app (SPA) (requires PKCE)
– Web
Incorrect: The other authentication flows do not support Single-page apps (SPAs).
https://docs.microsoft.com/en-us/azure/active-directory/develop/msal-authentication-flows

NEW QUESTION 178
You are building an app that will use the Microsoft Graph API and the Microsoft identity platform to enable users to perform the following tasks:
– Sign in to Azure Active Directory (Azure AD).
– View all the Microsoft 365 groups that they own.
Each week, the app will also email the users a list of the Microsoft 365 groups to which they belong. You need to identify which permissions to assign to the app. The solution must use the principle of least privilege. What should you identify?

A.    User.Read delegated, Group.Read delegated, Group.Read application, and Mail.Send application permissions.
B.    User.Read delegated, Group.Read application, and Mail.Send delegated permissions.
C.    User.Read delegated, User.Read application, Group.Read application, and Mail.Send application permissions.
D.    User.Read delegated, Group.Read delegated, and Mail.Send delegated permissions.

Answer: D
Explanation:
Microsoft Graph API mail.send delegated permission is less privileged than mail.send application permission. The same is true for Group.Read delegated compared to Group Read application.
https://docs.microsoft.com/en-us/graph/api/user-sendmail?view=graph-rest-1.0&tabs=http
https://docs.microsoft.com/en-us/graph/permissions-reference

NEW QUESTION 179
You are developing an app that will query the tenant for the names of all the Microsoft Teams teams in the organization. What permission will the app require? Your solution must follow the principle of least privilege.

A.    Channel.ReadBasic.All
B.    TeamSettings.Read.All
C.    Directory.Read.All
D.    Group.Read.All

Answer: D
Explanation:
To use the Microsoft Teams API in Microsoft Graph to list all teams in an organization (tenant), you find all groups that have teams, and then get information for each team. Need Group.Read.All to get access to groups.
https://docs.microsoft.com/en-us/graph/teams-list-all-teams

NEW QUESTION 180
You need to build a daemon app that polls Microsoft Graph to get all user information. You register and configure the app in Azure Active Directory (Azure AD). Which three actions should you perform next? (Each correct answer presents part of the solution. Choose three.)

A.    Get the consent of each user.
B.    Pass a bearer token in the authorization header and call the Microsoft Graph API.
C.    Get an ID token.
D.    Get an access token.
E.    Provide the admin consent URL to a global administrator in Azure AD.

Answer: BDE
Explanation:
https://docs.microsoft.com/en-us/azure/active-directory/develop/scenario-daemon-overview
https://docs.microsoft.com/en-us/graph/auth/auth-concepts

NEW QUESTION 181
You need to build a customizer that will modify the header and footer of each page of a Microsoft SharePoint Online site. You use the Yeoman generator to create a new SharePoint Framework (SPFx) project. What should you do next?

A.    Create a Field Customizer and render the custom content for top and bottom placeholders.
B.    Create an Application Customizer and render the custom content for top and bottom placeholders.
C.    Create an Application Customizer, override the Render method, and provide a custom header and footer.
D.    Create a Field Customizer, override the Render method, and provide a custom header and footer.

Answer: C
Explanation:
Application customizer provides access to predefined locations on the SharePoint page and allows us to customize them.
https://www.c-sharpcorner.com/article/sharepoint-framework-extensions-application-customizer-overview/

NEW QUESTION 182
You need to build a SharePoint Framework (SPFx) web part that will display the contents of a user’s Microsoft Exchange Online inbox. The solution must minimize development effort. Which object should you include in the solution?

A.    SPHttpClient.
B.    The JavaScript API for Exchange Web Services (EWS).
C.    MSGraphClient.
D.    AadHttpClient.

Answer: C
Explanation:
https://www.c-sharpcorner.com/article/show-outlook-messages-from-microsoft-graph-in-spfx-client-side-web-part/

NEW QUESTION 183
You have a third-party API that is secured by using Azure Active Directory (Azure AD). You need to configure a SharePoint Framework (SPFx) web part to consume the third-party API. Which method should you use?

A.    aadHccpCliencFaccory()
B.    ExecuteQuery()
C.    ClientConcexc()
D.    msGraphCliencFaccory()

Answer: A
Explanation:
The AadHttpClient client object is useful for consuming any REST API. You can use it to consume Microsoft Graph or any other third-party (or first-party) REST API. To consume any REST API using the AadHttpClient client object, create a new instance of the AadHttpClient type by calling the context.aadHttpClientFactory.getClient() method and providing the URI of the target service.
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/use-aad-tutorial

NEW QUESTION 184
You have a Microsoft Teams app that has several tabs. All the content of the app is currently in English. You need to localize the app in French and Italian for all users. Which three actions should you perform? (Each correct answer presents part of the solution. Choose three.)

A.    Uninstall and reinstall the app.
B.    From the Microsoft Teams admin center, add a custom app setup policy.
C.    From the Microsoft Teams admin center, modify the Ord-wide settings.
D.    Add a JSON file to the package for each language version.
E.    Modify the app manifest.
F.    Add an XML resource (resx) file to the package for each language version.

Answer: AEF
Explanation:
Consider the following factors to localize your Microsoft Teams app:
– Localize your AppSource listing.
– Localize strings in your app manifest.
– Handle localized text submissions from your users.
All files added to your solution need to follow a specific format that includes {filename}.LanguageID.resx, where the language ID is the numeric value for that language. This format is necessary because the framework relies on the naming convention to identify which resource file should be used to associate the appropriate localized string to a label control.
https://docs.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/apps-localization
https://docs.microsoft.com/en-us/powerapps/maker/model-driven-apps/custom-page-localize#add-localized-resx-web-resource-files-to-your-solution

NEW QUESTION 185
(This question requires that you evaluate the BOLD text to determine if it is correct.)
In Microsoft Word on Windows, before you can sideload a Microsoft Office Add-in, you must first upload the manifest to Microsoft OneDrive.
(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.    No change is needed
B.    deploy the manifest to an Azure website
C.    publish the manifest to a trusted network location
D.    set Microsoft Edge to Developer Mode

Answer: C
Explanation:
You can test an Office Add-in in an Office client that is on Windows by publishing the manifest to a network file share.
https://docs.microsoft.com/en-us/office/dev/add-ins/testing/create-a-network-shared-folder-catalog-for-task-pane-and-content-add-ins

NEW QUESTION 186
You are developing a Microsoft Office Add-in for Word. You need to persist the user state across sessions by using the Office JavaScript API. Which two objects can you use to persist the state? (Each correct answer presents a complete solution. Choose two.)

A.    CustomXmlParts
B.    RoamlngSeccings
C.    Settings
D.    CustomProperties

Answer: AC
Explanation:
– Settings: Office application support by Word, Excel, or PowerPoint. The document, spreadsheet, or presentation the add-in is working with. Content and task pane add-in settings are available to the add-in that created them from the document where they are saved.
– CustomXmlParts: Office application support by Word (using the Office JavaScript Common API), Excel (using the application-specific Excel JavaScript API). The document, spreadsheet, or presentation the add-in is working with.
https://docs.microsoft.com/en-us/office/dev/add-ins/develop/persisting-add-in-state-and-settings

NEW QUESTION 187
You are building a Microsoft Office Add-in for Outlook that will use the Microsoft Graph REST API to retrieve a user’s documents from a Microsoft SharePoint Online site. What should the add-in provide to retrieve the documents on behalf of the user?

A.    an identity token
B.    a single sign-on (SSO) token
C.    a refresh token
D.    an access token

Answer: D
Explanation:
Get an access token. Note: The Outlook REST APIs require a bearer token in the Authorization header. Typically, apps use OAuth2 flows to retrieve a token. However, add-ins can retrieve a token without implementing OAuth2 by using the new Office.context.mailbox.getCallbackTokenAsync method introduced in the Mailbox requirement set 1.5. After your add-in has the access token, item ID, and REST API URL, it can either pass that information to a back-end service which calls the REST API, or it can call it directly using AJAX.
https://docs.microsoft.com/en-us/office/dev/add-ins/outlook/use-rest-api

NEW QUESTION 188
HotSpot
You are developing a single-page application (SPA) that authenticates users by using MSAL.js. The SPA must meet the following requirements:
– Only allow access to the users in an organization named contoso.onmicrosoft.com.
– Support single sign-on (SSO) across tabs and user sessions.
How should you complete the code for the SPA? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1841_thumb2

Answer:
MS-600-Exam-Dumps-1842_thumb2
Explanation:
https://docs.microsoft.com/en-us/azure/active-directory/develop/tutorial-v2-javascript-spa

NEW QUESTION 189
HotSpot
You have a Microsoft 365 tenant that contains a user named User1 and a group named Group1. You need to create a Microsoft Graph API query that returns the following information:
– All the calendar events of User1.
– The details of Group1.
The solution must meet the following requirements:
– Minimize the amount of data returned.
– Minimize the number of calls executed against the Microsoft Graph API.
How should you complete the query? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1851_thumb

Answer:
MS-600-Exam-Dumps-1852_thumb
Explanation:
https://docs.microsoft.com/en-us/graph/api/calendar-post-events?view=graph-rest-1.0&tabs=http

NEW QUESTION 190
HotSpot
You are creating a report that will query Azure Active Directory (Azure AD) for group information by using the Microsoft Graph API. You need to retrieve an ordered list of groups by title. The solution must minimize the amount of data returned in the response. How should you complete the Graph API call? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1861_thumb2

Answer:
MS-600-Exam-Dumps-1862_thumb2
Explanation:
https://stackify.dev/185172-how-to-get-users-group-name-from-azure-active-directory-in-angular

NEW QUESTION 191
HotSpot
You have a Microsoft Teams channel that has a custom incoming webhook. You need to send a message of “Hello World!” to the channel that uses the incoming webhook. How should you complete the PowerShell command? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1871_thumb

Answer:
MS-600-Exam-Dumps-1872_thumb
Explanation:
https://techcommunity.microsoft.com/t5/microsoft-365-pnp-blog/how-to-configure-and-use-incoming-webhooks-in-microsoft-teams/ba-p/2051118

NEW QUESTION 192
HotSpot
You need to develop a scheduling app as a Microsoft Teams tab. The solution must minimize development effort and meet the following requirements:
– Receive user input by using a modal user interface (UI).
– Support cross-platform rendering.
What should you configure for each requirement? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1881_thumb3

Answer:
MS-600-Exam-Dumps-1882_thumb2
Explanation:
https://docs.microsoft.com/en-us/learn/modules/msteams-task-modules/

NEW QUESTION 193
Drag and Drop
You are building an API that will return a user’s documents from a Microsoft SharePoint Online site. You need to ensure that the API can use the Microsoft Authentication Library (MSAL) to access the SharePoint site. The solution must use the principle of least privilege. Which three actions should you perform in sequence? (To answer, move all actions from the list of actions to the answer area and arrange them in the correct order.)
MS-600-Exam-Dumps-1891_thumb

Answer:
MS-600-Exam-Dumps-1892_thumb2
Explanation:
Step 1: From Azure Active Directory admin center, register an app and create a client secret Register your application in Azure AD. Service-to-service calls require that your application use an X.509 certificate to create client assertion in the form of a base64-encoded, SHA256 signed JWT bearer token. Generate a new key for your application. Keys, also known as client secrets, are used when exchanging an authorization code for an access token.
Step 2: From the Azure Active Directory admin center, grant the Sites.Read.All delegated permission to the app. Delegated Permissions. Enables your client app to perform operations on behalf of the signed-in user, such as reading email or modifying the user’s profile.
Step 3: From the API code, configure the MSAL. When have registered your app in Azure AD and configured it with the necessary permissions, you’re ready to build your app.
https://docs.microsoft.com/en-us/office/office-365-management-api/get-started-with-office-365-management-apis

NEW QUESTION 194
Drag and Drop
You plan to create a bot as part of a Microsoft Teams app. The bot will use Microsoft 365 services on behalf of a user. You add token.botframework.com to the list of valid domains in the app manifest. You need to configure the authentication environment to ensure that the bot can access Microsoft 365 services on behalf of the user. 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.)
MS-600-Exam-Dumps-1901_thumb

Answer:
MS-600-Exam-Dumps-1902_thumb2
Explanation:
Step 1: Create a Bot Channels Registration in Azure and register the application in Azure Active Directory (Azure AD). Register a bot by creating a Bot Channels Registration through Azure Bot Channel Registration. The Azure AD portal provides a central platform for you to register and configure your apps. Your app must be registered in the Azure AD portal to integrate with the identity platform and call Microsoft Graph APIs.
Step 2: Create a new OAuth Connection in the Bot Channels Registration The first step to getting an access token for many OpenID Connect (OIDC) and OAuth 2.0 flows is to redirect the user to the Microsoft identity platform /authorize endpoint. Azure AD will sign the user in and ensure their consent for the permissions your app requests. In the authorization code grant flow, after consent is obtained, Azure AD will return an authorization_code to your app that it can redeem at the Microsoft identity platform /token endpoint for an access token.
Step 3: Set the reply URL to the web service that hosts the bot. Fill in the Webhook (for calling) where you will receive incoming notifications. E.g. https://{your domain}/api/calls.
https://docs.microsoft.com/en-us/graph/auth-v2-user
https://adrit.de/2018/07/04/what-the-faq-part-3-adding-the-qna-bot-to-microsoft-teams/
https://microsoftgraph.github.io/microsoft-graph-comms-samples/docs/articles/calls/register-calling-bot.html

NEW QUESTION 195
HotSpot
You are building a web app that will display the Microsoft Exchange Online Inbox of a user. The app will maintain a copy of the user’s Inbox data and regularly check for updates. You need to configure the Microsoft Graph URI for the app. The solution must minimize network traffic. How should you complete the request URI? (To answer, select the appropriate options in the answer area.)
MS-600-Exam-Dumps-1951

Answer:
MS-600-Exam-Dumps-1952
Explanation:
https://docs.microsoft.com/en-us/outlook/rest/compare-graph

NEW QUESTION 196
Drag and Drop
You are building an app that will use the Microsoft OneDrive API and enable users to upload 15 MB files to a OneDrive location. 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.)
MS-600-Exam-Dumps-1961

Answer:
MS-600-Exam-Dumps-1962
Explanation:
https://docs.microsoft.com/en-us/onedrive/developer/rest-api/api/driveitem_createuploadsession?view=odsp-graph-online

NEW QUESTION 197
……


Get the newest PassLeader MS-600 VCE dumps here: https://www.passleader.com/ms-600.html (245 Q&As Dumps –> 267 Q&As Dumps)

And, DOWNLOAD the newest PassLeader MS-600 PDF dumps from Cloud Storage for free: https://drive.google.com/open?id=1W-iyXtc7KMN9YngXGt6aZAlkJ-3WUlos