Valid MS-600 Exam Q&A PDF MS-600 Dump is Ready (Updated 170 Questions) [Q92-Q112]

Share

Valid MS-600 Exam Q&A PDF MS-600 Dump is Ready (Updated 170 Questions)

Exam Questions and Answers for  MS-600 Study Guide


Target Audience

This certification test is designed for the Microsoft 365 Developers who have the relevant skills in designing, building, testing, and maintaining applications & solutions optimized for the collaboration and productivity needs of enterprises that utilize the Microsoft 365 platform. The intended applicants for this exam are proficient in Microsoft Graph and Microsoft Identity. They also have a general understanding of the UI elements (including Office UI Fabric (Fluent UI) as well as Adaptive Cards), integration points (including Office Add-ins, Microsoft Teams, Actionable Messages), and defining workload platform targets.

 

NEW QUESTION 92
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 93
This question requires that you evaluate the underlined BOLD text to determine if it is correct.
You can use App Studio for Microsoft Teams to develop all the components of a bot application.
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. configure a Teams tab in an application
  • C. provision a bot by using the Bot Framework
  • D. develop a SharePoint Framework (SPFx) web part

Answer: B

Explanation:
Tabs provide a place for you to display for rich interactive web content. You can define both personal and team tabs.
There can be only 1 team tab per app, but up to 16 personal tabs per app.
Incorrect Answers:
D: Bots that you create in Microsoft Bot Framework can be specified in an App manifest and included as Teams Apps.

 

NEW QUESTION 94
You have an application that has the code shown in the exhibits. (Click the JavaScript Version tab or the C# Version tab.) For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.
JavaScript Version

C# Version

Answer:

Explanation:

Explanation

Box 1: Yes
Unified is specified in the code.
Note: You can create the following types of groups:
Office 365 group (unified group)
Security group
Box 2: Yes
A member is added to the group.
Box 3: No
Box 4: No
Reference: https://docs.microsoft.com/en-us/graph/api/group-post-groups

 

NEW QUESTION 95
You plan to integrate a web-based support ticketing system and Microsoft Teams.
You need to recommend a solution that will prompt users for specific information before a ticket is created.
The solution must minimize development effort.
What should you include in the recommendation?

  • A. outgoing webhooks
  • B. a notification-only bot
  • C. incoming webhooks
  • D. a conversational bot

Answer: A

Explanation:
Webhooks are a great way for Teams to integrate with external apps. A webhook is essentially a POST request sent to a callback URL. In Teams, outgoing webhooks provide a simple way to allow users to send messages to your web service without having to go through the full process of creating bots via the Microsoft Bot Framework. Outgoing webhooks post data from Teams to any chosen service capable of accepting a JSON payload. Once an outgoing webhook is added to a team, it acts like bot, listening in channels for messages using @mention, sending notifications to external web services, and responding with rich messages that can include cards and images.

 

NEW QUESTION 96
You are developing a SharePoint Framework (SPFx) web part. The web part will call a backed API that is secured by using Azure Active Directory (Azure AD). The web part will be on a page that has many other web parts.
Which type of web part should you use ensure that access to the exclusive to the web part?

  • A. Connected
  • B. Provider-hosted
  • C. SharePoint-hosted
  • D. Domain isolated

Answer: B

 

NEW QUESTION 97
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 full-width column web part
  • C. a messaging extension
  • D. a personal tab

Answer: D

 

NEW QUESTION 98
You have an application that employees use to schedule vacations. The application sets an automatic reply and an out-of-off event in the employees' Microsoft 365 calender.
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 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.

Answer:

Explanation:

 

NEW QUESTION 99
: 59 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.

Answer:

Explanation:

Explanation

Box 1: Yes
The Adaptive Cards Designer provides a drag-and-drop experience to quickly build and tweak adaptive cards.
Outlook Actionable Messages cards are designed using the Adaptive Card format. The Adaptive Card format is a simple yet powerful declarative layout format that provides a lot of flexibility, allowing for visually rich cards. In this topic we'll cover the Outlook-specific features of the Adaptive Card format.
Box 2: Yes
The actionable message card is in JSON format.
Box 3: No
By default, the Tenant Administrator can create, edit, clone, and delete tenants, and manage user accounts.
Note:
To enable Actionable Messages the recipient of the task must be an Office 365 customer with permissions for the SharePoint online site.
No: Office 365 administrators can disable actionable messages via the Set-OrganizationConfig cmdlet. If actionable messages do not render, check with your administrator to make sure the feature is enabled in your organization.
Adaptive Cards Designer Microsoft outlook actionable messages
References: https://docs.microsoft.com/en-us/outlook/actionable-messages/adaptive-card
https://gingkoapp.com/create-tenant-administrator.html

 

NEW QUESTION 100
You have a starter SharePoint Framework (SPFx) web part.
You need to test the web part from the local workbench by connecting to a URL of https:// localhost:4321/temp/workbench.html.
Which tool should you use make the web part available locally for debugging?

  • A. gulp serve
  • B. Yeoman
  • C. npm install
  • D. Microsoft Visual Studio Code

Answer: D

Explanation:
By setting up debugging of your SharePoint Framework solution in Visual Studio Code, you can more efficiently step through your code and fix errors.
When building SharePoint Framework solutions, you can use the local workbench to verify that your web part is working correctly. Using the local workbench is convenient for testing all scenarios that do not require communicating with SharePoint as well as for offline development.
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/debug-in-vscode

 

NEW QUESTION 101
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. authorization code
  • B. refresh token
  • C. resource owner password
  • D. device code

Answer: A

Explanation:
Explanation
In web server apps, the sign-in authentication flow takes these high-level steps:
A picture containing table Description automatically generated

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 102
You have an invoice approval process in which an approver is sent an automated email that contains a link to a web-based accounts system whenever an invoice requires approval.
Which benefit can be achieved by using actionable messages for the approval process?

  • A. Actionable messages can provide detailed auditing of all the approved invoices and can be viewed in a rollup report
  • B. Actionable messages will work in any email client
  • C. The approver can delegate invoice approvals to other users by forwarding actionable messages
  • D. Invoices can be approved directly from Microsoft Outlook by using actionable messages

Answer: D

Explanation:
Explanation
Whether you are filling out a survey, approving an expense report, or updating a CRM sales opportunity, Actionable Messages enable you to take quick actions right from within Outlook. Developers can now embed actions in their emails or notifications, elevating user engagement with their services and increasing organizational productivity.
Reference: https://docs.microsoft.com/en-us/outlook/actionable-messages/

 

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

Answer:

Explanation:

 

NEW QUESTION 104
You create a personal bot that you plan to distribute as a Microsoft Teams team app.
The bot has the following app manifest.

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

Answer: A

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.

 

NEW QUESTION 106
You are developing an Azure web app that will enable users to view a consolidated view of multiple users' tasks based on data in Microsoft Planner and Outlook. The app will use the Microsoft identity platform and a certificate to establish an authorization flow between the app and Microsoft 365.
You obtain a certificate and you create an Azure Active Directory (Azure AD) application.
You need to set up authorization for the application.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Create a secret in the Azure AD application.
  • B. Add the required delegated permissions to the Azure AD application.
  • C. Add the application permissions to the Azure AD application.
  • D. From the Azure portal, upload a certificate public key for the Azure AD application.
  • E. Modify the code of the web app to use the certificate to obtain an access token for Microsoft Graph.

Answer: A,B,D

 

NEW QUESTION 107
You are developing an Azure web app that will enable users to view a consolidated view of multiple users' tasks based on data in Microsoft Planner and Outlook. The app will use the Microsoft identity platform and a certificate to establish an authorization flow between the app and Microsoft 365.
You obtain a certificate and you create an Azure Active Directory (Azure AD) application.
You need to set up authorization for the application.
Which three actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point-

  • A. Create a secret in the Azure AD application.
  • B. Add the application permissions to the Azure AD application.
  • C. From the Azure portal, configure a certificate public key for the Azure AD application.
  • D. Add the required delegated permissions to the Azure AD application.
  • E. Modify the code of the Azure web app to use the certificate to obtain an access token for Microsoft Graph.

Answer: B,D,E

 

NEW QUESTION 108
You have a SharePoint Framework (SPFx) web part that displays the weather. Users can set the city within the web part. Which component is invoked to provide the users with the ability to configure the settings for the web part?

  • A. the property pane
  • B. a custom control
  • C. a library component
  • D. the Application Customizer

Answer: A

Explanation:
Reference:
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/guidance/integrate-web-part-properties-with-sha

 

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

Answer:

Explanation:

 

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

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

Answer: D

 

NEW QUESTION 111
You are building a server-based web app that will use OAuth2 and will be registered with the Microsoft identity platform.
Which two values does the app require to obtain tokens from the Azure Active Directory (Azure AD) authorization endpoint? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. the tenant ID
  • B. the application secret
  • C. the authorization code
  • D. the context token
  • E. the application ID

Answer: C,E

Explanation:
Explanation
C: The required client_id is the Application (client) ID that the Azure portal - App registrations experience assigned to your app.
E: The authorization code flow begins with the client directing the user to the /authorize endpoint.

Reference: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-auth-code-flow

 

NEW QUESTION 112
......


Microsoft MS-600 Exam Syllabus Topics:

TopicDetails
Topic 1
  • Validate Access Token•Configure Effective Permissions For Delegated Scopes
  • Configure Application Permissions For The App
Topic 2
  • Optimize Data Usage With Query Parameters
  • Implement Error 429 Handleraccess User Data From Microsoft Graph
Topic 3
  • Implement App Permissions Using Roles
  • Configure Client Credentials Using A Certificate
Topic 4
  • Get Changes Using A Delta Query
  • Implement Microsoft Identity
  • Get The Users Profile Photo
Topic 5
  • Use The MSAL JS Login Methodconfigure Permissions To Consume An API
  • Define App Rolesimplement Authentication
Topic 6
  • Expand And Retrieve Resources Using $Expand Query Parameter
  • Configure Incremental Consent Scopes
Topic 7
  • Use A Delegated Access Token To Call A Microsoft Apicreate A Service To Access Microsoft Graph
Topic 8
  • Set Page Size Of Results Using $Skip And $Top Query Parameters
  • Determine The Appropriate Microsoft Graph SDK To Leverageoptimize Network Traffic
Topic 9
  • Configure Microsoft Authentication Library (MSAL JS) For Endpoint And Token Cache
  • Determine The Supported Account Type
Topic 10
  • Monitor For Changes Using Change Notifications
  • Search For Resources Using $Search Query Parameter
Topic 11
  • Identify Admin Consent Requirementsimplement Authorization To Consume An API
  • Configure Application Permissions For The App
Topic 12
  • Plan And Configure Scopes For Dynamic Or Static Permission
  • Configure Delegated Permissions For The App
Topic 13
  • Call MSAL JS Using Aquiretokensilent
  • Aquiretoken Patternimplement Authorization In An API
Topic 14
  • Retrieve The Total Count Of Matching Resources Using $Count Query Parameter
  • Getthe Signed In Users Profile•Get A List Of Users In The Organization
Topic 15
  • Acquire An Access Token For Microsoft Graph Using An Application Permission And Client Credential Certificate
Topic 16
  • Use $Select Query Parameter
  • Use $Filter Query Parameter


Schedule exam

Languages: English

Retirement date: none

This exam measures your ability to accomplish the following technical tasks: implement Microsoft identity; build apps with Microsoft Graph; extend and customize SharePoint; extend Teams; and extend Office.

 

Certification dumps - Microsoft 365 Certified: Developer Associate MS-600 guides - 100% valid: https://troytec.validtorrent.com/MS-600-valid-exam-torrent.html