Start your MS-600 Exam Questions Preparation with Updated 244 Questions A Fully Updated 2024 MS-600 Exam Dumps - PDF Questions and Testing Engine To pass the MS-600 exam, candidates must have a strong understanding of Microsoft 365 services, as well as experience developing applications using Microsoft technologies. They must also be able to demonstrate their ability to design, develop, and deploy [...]

Start your MS-600 Exam Questions Preparation with Updated 244 Questions [Q45-Q60]

Share

Start your MS-600 Exam Questions Preparation with Updated 244 Questions

A Fully Updated 2024 MS-600 Exam Dumps - PDF Questions and Testing Engine


To pass the MS-600 exam, candidates must have a strong understanding of Microsoft 365 services, as well as experience developing applications using Microsoft technologies. They must also be able to demonstrate their ability to design, develop, and deploy solutions that meet specific business requirements.

 

NEW QUESTION # 45
You are developing an application that will run as an overnight background service on a server. The service will access web-hosted resources by using the application's identity and the OAuth 2.0 client credentials grant flow.
You register the application and grant permissions. The tenant administrator grants admin consent to the application.
You need to get the access token from Azure Active Directory (Azure AD).
Which URI should you use for the POST request? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Explanation

Oauth2 client_id client_secret
The authorization code flow begins with the client directing the user to the /authorize endpoint.
Box 1: token
Use the authorization code to request an access token.
Now that you've acquired an authorization code and have been granted permission by the user, you can redeem the code for an access token to the desired resource, by sending a POST request to the /token endpoint:
Box 2: authorization_code
Use the authorization code to request an access token.
Example:
// Line breaks for legibility only
POST /{tenant}/oauth2/token HTTP/1.1
Host: https://login.microsoftonline.com
Content-Type: application/x-www-form-urlencoded
grant_type=authorization_code
etc.
Note: At a high level, the entire authorization flow for an application looks a bit like this:

Reference: https://docs.microsoft.com/en-us/azure/active-directory/develop/v1-protocols-oauth-code


NEW QUESTION # 46
You are developing a Microsoft Teams app that will display differently depending on the current Ul theme applied to Microsoft Teams.
You need to retrieve the current theme by using the Microsoft Teams JavaScript client SDK?
Which function should you call?

  • A. microsoftTeams.settings.getSettings
  • B. microsoftTeams.initialize
  • C. microsoftTeams.getContext
  • D. microsoftTeams.getMruTablnstances

Answer: C

Explanation:
The available placeholders include all fields on the context object. Common placeholders include the following:
{entityId}: The ID you supplied for the item in this tab when first configuring the tab.
{theme}: The current user interface (UI) theme such as default, dark, or contrast.
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/how-to/access-teams-context


NEW QUESTION # 47
You are developing a Microsoft Office Add-in for Microsoft Word.
Which Office UI element can contain commands from the add-in?

  • A. task panes
  • B. the File menu
  • C. the ribbon
  • D. dialog boxes

Answer: C

Explanation:
Reference:
https://docs.microsoft.com/en-us/office/dev/add-ins/design/add-in-commands


NEW QUESTION # 48
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.

Answer:

Explanation:

1 - Create a Bot Channels Registration in Azure and register the application in Azure Active Directory (Azure AD)
2 - Create a new OAuth Connection in the Bot Channels Registration
3 - Set the reply URL to the web service that hosts the bot.
Reference:
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/


NEW QUESTION # 49
You build a Microsoft Teams app named App1.
You plan to publish App1 to the Teams store.
You need to complete the Microsoft 365 certification for App1. The solution must minimize administrative effort.
To which domains must you submit evidence?

  • A. operational security only
  • B. application security, data handling security and privacy, and operational security
  • C. operational security and data handling security and privacy only
  • D. data handling security and privacy only
  • E. application security only
  • F. application security and data handling security and privacy only

Answer: B

Explanation:
You must submit evidence to all three domains in order to successfully complete the Microsoft 365 certification for App1.


NEW QUESTION # 50
You plan to develop a TypeScript client-side app that will use the MSGraphClient library.
You need to configure Microsoft Visual Studio Code to use IntelliSense and support code completion for the MSGraph client library.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Add the following import Statement to the code: import * as MicrosoftGraph from '@Microsoft/microsoft-graph-types';
  • B. Add the following import statement to the code: import * as MicrosoftGraph from '@microsoft/microsoft-graph';
  • C. Run the npm install @microsoft/microsoft-graph --save-dev command.
  • D. Run the: npm install @microsoft/microsoft-graph-types --save-dev command.
  • E. Install the Microsoft Graph Toolkit.

Answer: A,B


NEW QUESTION # 51
You plan to implement a new task pane in Microsoft Office.
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://github.com/OfficeDev/office-js-docs-pr/blob/master/docs/develop/automatically-open-a-task-pane-with-a-document.md
https://docs.microsoft.com/en-us/office/troubleshoot/settings/office-program-task-panes


NEW QUESTION # 52
You need to develop a conversational bot in Microsoft Teams.
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.

Answer:

Explanation:

Explanation

Timeline Description automatically generated
Reference:
https://www.sharepointeurope.com/step-by-step-configure-bot-to-work-in-teams-and-with-microsoft-graph/


NEW QUESTION # 53
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 are developing a new application named App1 that uses the Microsoft identity platform to authenticate to Azure Active Directory (Azure AD).
Currently, App1 can read user profile information.
You need to allow App1 to read the user's calendar.
Solution: In the code of App1, dynamically request the Calendar.Read permission from the Microsoft Graph API.
Does this meet the goal?

  • A. No
  • B. Yes

Answer: A

Explanation:
Explanation
For your app to access data in Microsoft Graph, the user or administrator must grant it the correct permissions via a consent process.
Application permissions can only be consented by an administrator.
References: https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-permissions-and-consent
https://docs.microsoft.com/en-us/graph/permissions-reference


NEW QUESTION # 54
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, email Description automatically generated

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 # 55
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 # 56
Which URI should you use to query all the email that relate to an invoice?

  • A. https://graph.microsoft.com/v1.0/me/messages?${invoiceid}
  • B. https://graph.microsoft.com/v1.0/me/messages?$filter=contains(subject, {invoiceid})
  • C. https://graph.microsoft.com/v1.0/me/messages?$subject eq {invoiceid}
  • D. https://graph.microsoft.com/v1.0/me/messages?$search="{invoiceid}"

Answer: D

Explanation:
Reference:
https://docs.microsoft.com/en-us/graph/search-query-parameter
Overview
This is a case study. Case studies are not timed separately. You can use as much exam time as you would like to complete each case. However, there may be additional case studies and sections on this exam. You must manage your time to ensure that you are able to complete all questions included on this exam in the time provided.
To answer the questions included in a case study, you will need to reference information that is provided in the case study. Case studies might contain exhibits and other resources that provide more information about the scenario that is described in the case study. Each question is independent of the other questions in this case study.
At the end of this case study, a review screen will appear. This screen allows you to review your answers and to make changes before you move to the next section of the exam. After you begin a new section, you cannot return to this section.


NEW QUESTION # 57
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.
NOTE: Each correct selection is worth one point.

Answer:

Explanation:

Reference:
https://docs.microsoft.com/en-us/azure/active-directory/develop/tutorial-v2-javascript-spa


NEW QUESTION # 58
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. Add the manifest path to the trusted catalogs
  • B. Disable script debugging in your web browser
  • C. Publish the manifest to the Microsoft SharePoint app catalog
  • D. Sideload the add-in

Answer: C

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 # 59
You have a SharePoint Framework (SPFx) 1.5 solution.
You need to ensure that the solution can be used as a tab in Microsoft Teams.
What should you do first?

  • A. Convert the solution to use the Bot Framework
  • B. Upgrade the solution to the latest version of SPFx
  • C. Deploy the solution to a developer site collection
  • D. Deploy the solution to the Microsoft AppSource store

Answer: B

Explanation:
Starting with the SharePoint Framework v1.8, you can implement your Microsoft Teams tabs using SharePoint Framework.


NEW QUESTION # 60
......

Easy Success Microsoft MS-600 Exam in First Try: https://pass4sure.guidetorrent.com/MS-600-dumps-questions.html