Try Before You Buy

Download a free sample of any of our exam questions and answers

  • 24/7 customer support, Secure shopping site
  • Free One year updates to match real exam scenarios
  • If you failed your exam after buying our products we will refund the full amount back to you.

Pass Microsoft MS-600 Exam Info and Free Practice Test [Q54-Q73]

Share

Pass Microsoft MS-600 Exam Info and Free Practice Test

New 2023 Latest Questions MS-600 Dumps - Use Updated Microsoft Exam

NEW QUESTION # 54
You are building a Microsoft Teams application.
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 # 55
You are developing in application named App1.
App1 needs to use the Microsoft Graph API to retrieve emails from Microsoft 365 for the current signed-in user. The solution must meet the following requirements:
* Emails that have attachments and are from [email protected] must be retrieved.
* The results must show the subject of the email, the sender address, and the count of emails retrieved.
How should you complete the URI to retrieve the results? To answer, drag the appropriate values to the correct targets. Each value 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.

Answer:

Explanation:

Explanation

Box 1: $count
Use $count as a query parameter to include a count of the total number of items in a collection alongside the page of data values returned from the Graph, as in the following example:
GET https://graph.microsoft.com/v1.0/me/contacts?$count=true
Box 2: $select
To specify a different set of properties to return than the default set provided by the Graph, use the $select query option. The $select option allows for choosing a subset or superset of the default set returned.
Box 3: $filter
To filter the response data based on a set of criteria, use the $filter query option.
The following example returns messages that have the address field of the from property equal to
"[email protected]".
The from property is of the complex type emailAddress.
GET https://graph.microsoft.com/v1.0/me/messages?$filter=from/emailAddress/address eq '[email protected]' Reference: https://developer.microsoft.com/en-us/graph/docs/overview/query_parameters


NEW QUESTION # 56
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
Using the isolated web parts capability, you can build web parts that securely communicate with APIs secured with Azure AD without exposing the access token to other components on the page or even scripts in the tenant.
When deploying these solutions to the app catalog, all API permission requests are specified as isolated.
Box 2: Yes
Even though on runtime isolated web parts will be loaded inside an iframe pointing to a unique domain, you can communicate with SharePoint REST API, the same way as you would in non-isolated web parts.
Box 3: Yes
If you're upgrading an existing SharePoint Framework project to v1.8.0 and want to use the isolated permissions capability, you can do it, by setting in the config/package-solution.json file, the isDomainIsolated property to true. You should ensure, that your project contains only web parts.
After changing the project to use isolated permissions, you should redeploy your project. This will issue new API permission requests, isolated to your solution, which will need to be approved by the tenant admin.
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/isolated-web-parts


NEW QUESTION # 57
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 Teams folder in the solution
  • C. a manifest file to the webparts folder in the solution
  • D. the TeamsTab value to the componentType property in the manifest file

Answer: C

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 # 58
You have a single-page application (SPA) named TodoListSPA and a server-based web app named TodoListService.
The permissions for the TodoListSPA API are configured as shown in the TodoListSPA 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 request should you configure?

  • A. the sites.Read.ah application permission for TodoListSPA
  • B. the sites.Read.ah delegated permission for TodoListService
  • C. the sites.Read.ah application permission for TodoListService
  • D. the sites. Read.All delegated permission for TodoListSPA

Answer: C


NEW QUESTION # 59
You have an API that is secured by using Azure Active Directory (Azure AD).
You are designing a SharePoint Framework (SPFx) solution.
Which object should you use to connect to the API from the solution?

  • A. HttpClient
  • B. SPHttpClient
  • C. AadHttpClient

Answer: C

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


NEW QUESTION # 60
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:

Explanation
Graphical user interface, text, application, chat or text message Description automatically generated

Reference:
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-field-customizer#en
https://www.spguides.com/spfx-application-customizer/


NEW QUESTION # 61
You need to display the profile picture of the current signed-in user.
Which REST query should you use to retrieve the picture?

  • A. GET /users/ {UserPricincipleName} / photo
  • B. GET me photo $value
  • C. GET / me/ photo
  • D. GET / me/photos/0

Answer: B

Explanation:
Explanation
The following OData 4.0 capabilities are URL segments, not query parameters.
$value retrieves or updates the binary value of an item.
Example: GET /me/photo/$value
Reference:
https://docs.microsoft.com/en-us/graph/query-parameters


NEW QUESTION # 62
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 # 63
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 # 64
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.

Answer:

Explanation:


NEW QUESTION # 65
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 = {
    };
  • B. const scopes = ['https://graph.microsoft.com/Files.Read.All',
    'https://graph.microsoft.com/Mail.Send.All'];
  • C. const accessTokenRequest = {
    scopes: ['https://graph.microsoft.com/Files.ReadWrite',
    'https://graph.microsoft.com/Mail.Send']
    };
  • D. const scopes = ['https://graph.microsoft.com/.default'];

Answer: C

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 # 66
You have an app named App1 that uses the Microsoft Graph API.
You need to identify all users who have a job title of Developer. The solution must return only the display name and email address attributes of the users.
How should you complete the Microsoft Graph API query? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation
Graphical user interface Description automatically generated

Reference:
https://docs.microsoft.com/en-us/graph/api/user-list?view=graph-rest-1.0&tabs=http


NEW QUESTION # 67
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:

Reference:
https://yeoman.io/learning/
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/build-a-hello-world-web-part


NEW QUESTION # 68
This question requires that you evaluate the underlined 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. by using the Add a tab option in the Teams channel
  • C. No change is needed
  • 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).
Reference: https://docs.microsoft.com/en-us/microsoftteams/platform/messaging-extensions/what-are- messaging-extensions


NEW QUESTION # 69
You need to develop a server-based web app that will be registered with the Microsoft identity platform. The solution must ensure that the app can perform operations on behalf of the user.
Which type of authorization flow should you use?

  • A. resource owner password
  • B. refresh token
  • C. device code
  • D. authorization code

Answer: D

Explanation:
In web server apps, the sign-in authentication flow takes these high-level steps:

You can ensure the user's identity by validating the ID token with a public signing key that is received from the Microsoft identity platform endpoint. A session cookie is set, which can be used to identify the user on subsequent page requests.
In addition to simple sign-in, a web server app might need to access another web service, such as a REST API. In this case, the web server app engages in a combined OpenID Connect and OAuth 2.0 flow, by using the OAuth 2.0 authorization code flow.
Reference: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-app-types


NEW QUESTION # 70
You plan to create a Microsoft Teams application that uses action-based messaging extensions.
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 # 71
You are developing a front end web app.
You want to display the current username as part of the user interface.
You need to retrieve the current username from Microsoft Graph by using a REST request. The solution must minimize the amount of information returned.
To which URI should you send the request?

  • A. https://graph.microsoft.com/v1.0/me?$select=displayName
  • B. https://graph.microsoft.com/v1.0/me?$search=displayName
  • C. https://graph.microsoft.com/v1.0/users/[email protected]/people?$select=displayName
  • D. https://graph.microsoft.com/v.1.0/me

Answer: D

Explanation:
Reference:
https://docs.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http


NEW QUESTION # 72
You use Azure Active Directory (Azure AD) to store user identities.
The user profile information is inconsistently populated.
You need to develop a web app that will provide users with a page where they can enter their interests, skill, and description. When the user click the submit button, the app will use Microsoft graph to send the data to Azure AD.
Which HTTP method should you use against the Microsoft graph endpoint?

  • A. GET
  • B. PUT
  • C. POST
  • D. PATCH

Answer: D

Explanation:
Use PATCH to update a resource with new values.
Reference:
https://docs.microsoft.com/en-us/graph/use-the-api


NEW QUESTION # 73
......

Latest MS-600 Exam Dumps Microsoft Exam: https://certkingdom.vce4dumps.com/MS-600-latest-dumps.html