MS-600ブレーン問題集PDF、Microsoft MS-600試験問題豪華お試しセット [Q17-Q42]

Share

MS-600ブレーン問題集PDF、Microsoft MS-600試験問題豪華お試しセット

2023年最新されたMS-600サンプル問題は信頼され続けるMS-600テストエンジン


MicrosoftのMS-600認定試験は、Microsoft 365コアサービスを使用してアプリケーションやソリューションを構築したい開発者にとって重要な認定試験です。この試験は、Microsoft 365サービスと統合するソリューションを設計、開発、展開するための幅広いトピックに関連する内容をカバーしており、開発者が専門知識をデモンストレーションし、キャリアを進めるための優れた方法となっています。

 

質問 # 17
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 D
  • B. Option B
  • C. Option A
  • D. Option C

正解:C


質問 # 18
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: 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


質問 # 19
You build a Microsoft Teams bot named Bot1 and publish Bot1 to Azure.
You need to make Bot1 available for testing. The solution must meet the following requirements:
* Ensure that Botl is accessible only via Teams.
* Limit access to Botl to specific users.
* Minimize administrative effort.
What should you do first in the Azure portal?

  • A. From the Access control (1AM) settings of Botl, configure role assignments for Botl.
  • B. From the Configuration settings of Botl, add an OAuth connection.
  • C. From the Channels settings of Botl, add a Teams channel and distribute the URL to the users.
  • D. From the Channels settings of Botl. add a Direct Line channel and share the App Service extension keys for the channel to the users.

正解:C


質問 # 20
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. Run the npm install @microsoft/microsoft-graph --save-dev command.
  • B. Run the: npm install @microsoft/microsoft-graph-types --save-dev command.
  • C. Add the following import statement to the code: import * as MicrosoftGraph from '@microsoft/microsoft-graph';
  • D. Add the following import Statement to the code: import * as MicrosoftGraph from '@Microsoft/microsoft-graph-types';
  • E. Install the Microsoft Graph Toolkit.

正解:C、D


質問 # 21
For each of the following statements, select Yes if the statement is true. Otherwise, select No.
NOTE: Each correct selection is worth one point.

正解:

解説:


質問 # 22
You have a conversational bot that retrieves files from the Microsoft OneDrive of users.
You are adding functionality to the bot to enable the bot to retrieve files from other cloud storage providers.
What should you configure to ensure that the bot can access the other cloud storage providers on behalf of the users?

  • A. Add a new site to the channels of the Bot Channels Registration.
  • B. Generate a new client certificate for the Azure AD application.
  • C. Add OAuth Connection Settings to the Bot Channels Registration.
  • D. Modify the API permissions of the Azure AD application.

正解:C

解説:
Explanation
This option allows you to configure how your bot can access other cloud storage providers on behalf of the users by using OAuth 2.0 protocol456. You need to provide a name for the connection, select a service provider, and enter the client ID and secret of your Azure AD application.


質問 # 23
You are developing an Azure function to provision a team in Microsoft Teams.
You need to create a group named Project A, add a classification of Private to the group, and then convert Project A to a team group.
How should you complete the REST requests? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:

Explanation


Box 1: post
You need to create a group named Project A.
The following example creates an Office 365 group.
POST https://graph.microsoft.com/v1.0/groups
Content-type: application/json
Content-length: 244
{
"description": "Self help community for library",
"displayName": "Library Assist",
"groupTypes": [
"Unified"
],
"mailEnabled": true,
"mailNickname": "library",
"securityEnabled": false
}
Box 2: PATCH
Add a classification of Private to the group.
You can set the classification property in a PATCH request for the group, if do not set it in the initial POST request that creates the group.
Box 3: put
Then convert Project A to a team group.
Syntax: PUT /groups/{id}/team
References: https://docs.microsoft.com/en-us/graph/api/group-post-groups
https://docs.microsoft.com/en-us/graph/api/resources/group
https://docs.microsoft.com/en-us/graph/api/team-put-teams


質問 # 24
You are developing an application that will use Microsoft Graph.
You attempt to retrieve a list of the groups in your organization by using a URI of https://graph.microsoft.eom/vi.0/groups on behalf of the user.
The application fails. The diagnostic logs show the following information:
* An HTTP 403 Forbidden status code
* An Authorization_RequestDenied error code
* The following error message: "Insufficient privileges to complete the operation." You need to ensure that the application can retrieve the list of groups. The solution must use the principle of least privilege. Which two actions should you perform? Each correct answer presents part of the solution. NOTE; Each correct selection is worth one point.

  • A. In the permission request for the application, request the Group. Readwrite. All permission
  • B. In the permission request for the application, request the Group. Read. All permission.
  • C. Grant tenant admin consent for the Group.Read. All permission.
  • D. Configure the application to use application permissions.

正解:A、D

解説:
Reference:
https://docs.microsoft.com/en-us/graph/permissions-reference


質問 # 25
Which URI should you use to query all the email that relate to an invoice?

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

正解:A

解説:
Reference:
https://docs.microsoft.com/en-us/graph/search-query-parameter


質問 # 26
You are developing an app that will display all the users returned in a Microsoft Graph query.
The entire dataset is too large, and you receive the following response.

How should you retrieve the next page of data?

  • A. Send an HTTP GET request that contains the id value.
  • B. Send an HTTP PATCH request to the @odata.context value.
  • C. Send an HTTP GET request that contains the skiptoken value.
  • D. Send an HTTP GET request to the @odata.nextLink value.
  • E. Append the skip query parameter to the last request.

正解:E

解説:
Reference:
https://docs.microsoft.com/en-us/graph/query-parameters


質問 # 27
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: 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


質問 # 28
You are evaluating the SharePoint Framework (SPFx) ListView Command Set extension.
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: Yes
Extensions are client-side components that run inside the context of a SharePoint page.
Box 2: Yes
ClientSideExtension.ListViewCommandSet.CommandBar: The top command set menu in a list or library.
Box 3: Yes
ClientSideExtension.ListViewCommandSet.ContextMenu: The context menu of the item(s).
Reference:
https://docs.microsoft.com/en-us/sharepoint/dev/spfx/extensions/get-started/building-simple-cmdset-with-dialog-


質問 # 29
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

正解:

解説:


質問 # 30
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, chat or text message Description automatically generated

Box 1: Yes
As part of your app you can add custom tabs to embed your own web content in Teams, and using the Teams JavaScript client SDK, add Teams-specific functionality to your web content.
Box 2: Yes
You can use the Office JavaScript API to create task pane or content add-ins for Office 2013 host applications.
Box 3: Yes
You can use the Office JavaScript API to create task pane or content add-ins for Office 2013 host applications.
Reference: https://docs.microsoft.com/en-us/microsoftteams/platform/tabs/what-are-tabs
https://docs.microsoft.com/en-us/office/dev/add-ins/develop/support-for-task-pane-and-content-add-ins


質問 # 31
You create a SharePoint Framework (SPFx) web part and include MSGraphClient by using the following manifest.

Which two actions can the web part perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.

  • A. Send an email on behalf of the current user.
  • B. Send an email on behalf of another user.
  • C. Create a file in the current user's Microsoft OneDrive.
  • D. Access the user information of all users.
  • E. Access the user information of the current user only.

正解:A、E

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


質問 # 32
How can you validate that the JSON notification message is sent from the Microsoft Graph service?

  • A. The tenant ID must match the tenant ID of the customer's Office 365 tenant.
  • B. The ClientState must match the value provided when subscribing.
  • C. The subscription ID must match the Azure subscription used by ADatum.
  • D. The user_guid must map to a user ID in the Azure AD tenant of the customer.

正解:B

解説:
clientState specifies the value of the clientState property sent by the service in each notification. The maximum length is 128 characters. The client can check that the notification came from the service by comparing the value of the clientState property sent with the subscription with the value of the clientState property received with each notification.
Note: A subscription allows a client app to receive notifications about changes to data in Microsoft Graph.
Reference: https://docs.microsoft.com/en-us/graph/api/resources/subscription Build Apps with Microsoft Graph Question Set 2


質問 # 33
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.
NOTE: Each correct selection is worth one point.

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

正解:A、C、E

解説:
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.
Reference:
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


質問 # 34
For each of the following statements, select Yes if the statement is true. Otherwise, select NO.
NOTE: Each correct selection is worth one point.

正解:

解説:


質問 # 35
What are two possible URIs that you can use to configure the content administration user interface? Each correct answer present a complete solution.
NOTE: Each correct selection is worth one point.

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

正解:A、D


質問 # 36
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. a notification-only bot
  • B. a conversational bot
  • C. outgoing webhooks
  • D. incoming webhooks

正解:C

解説:
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.
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-outgoing-webh


質問 # 37
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.

正解:

解説:


質問 # 38
You are developing a Microsoft Teams solution to host an existing webpage as a Teams tab.
Which requirement must the page meet?

  • A. The page must adhere to HTML 5.0 standards
  • B. The page must use CSS3 stylesheets
  • C. The page must adhere to WCAG 2.0 accessibility guidelines
  • D. The page must be hosted on a domain that is on the validDomains list of the manifest

正解:D

解説:
Make sure that all domains used in your tab pages are listed in the manifest.json validDomains array.
Reference:
configuration-page


質問 # 39
You need to configure HRApp to enable users to search for specific jobs by using chat 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.

正解:

解説:

1 - Create a bot registration and a Microsoft Bot Framwork app.
2 - In the HRApp manifest, configure the the botld,,,,,
3 - In the HRApp manifest, configure the botld value in the ,,,,,,,


質問 # 40
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 / me/photos/0
  • B. GET / me/ photo
  • C. GET /users/ {UserPricincipleName} / photo
  • D. GET me photo $value

正解:B


質問 # 41
You have a SharePoint Framework (SPFx) web part that includes the manifest shown in the following exhibit.

Which task can the web part perform?

  • A. Send an email as another user.
  • B. Send an email as the web part.
  • C. Send an email as the current user.
  • D. Send an email on behalf of a mail-enabled group.

正解:C

解説:
In SPFx we will get the user context using the object "context". We have msGraphClientFactory available in the same object which will take care of generating the Access Token based on the user context.
Reference:
https://www.c-sharpcorner.com/article/how-to-send-email-using-graph-api-in-sharepoint-framework-spfx/


質問 # 42
......

無料お試しMicrosoft MS-600問題集PDFは必ずベストの問題集オプションを使おう:https://www.jpntest.com/shiken/MS-600-mondaishu

MS-600試験資料Microsoft学習ガイド:https://drive.google.com/open?id=1ObwAOgN7s704X0Ouyd2cxZunh2FlM9Ty

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡