[2023年10月24日] 無料Microsoft 365 Certified: Developer Associate MS-600試験問題を使おう [Q108-Q130]

Share

[2023年10月24日] 無料Microsoft 365 Certified: Developer Associate MS-600試験問題を使おう

MS-600問題集でMicrosoft 365 Certified: Developer Associate必ず合格できる練習問題集


試験は合計60問で、受験者は150分以内に完了する必要があります。受験者は、多肢選択問題、ドラッグアンドドロップ問題、シミュレーションベースの問題など、様々なタイプの問題に遭遇することが予想されます。試験はオンラインで受験することができ、受験者は自宅やオフィスから試験を受けることができます。


MS-600試験に合格するには、Microsoft 365サービス、プログラミング言語、開発ツールを十分に理解する必要があります。また、Azure Active Directory、OAuth2、およびRestful Servicesに精通している必要があります。この試験を受ける前に、Microsoft 365サービスを使用してソリューションを開発した少なくとも1年の経験があることをお勧めします。

 

質問 # 108
You have a Microsoft Teams app that supports conversational subentities.
For each of the following statements, select Yes if the statement is true. Otherwise select No.
NOTE: Each correct selection is worth one point.

正解:

解説:


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

正解:

解説:

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


質問 # 110
You have a server-side web app that uses OAuth 2.0 and is registered to the Microsoft identity platform.
A user acquires an authorization token.
You need to specify which HTTP header format the user must use to access the app.
What should you specify? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:


質問 # 111
You have an application that employees use to schedule vacations. The application sets an automatic reply and an out-of-office event in the employees' Microsoft 365 calendar.
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 a 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.
NOTE: Each correct selection is worth one point.

正解:

解説:


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

正解:

解説:


質問 # 113
You have a line-of-business API that is secured by using Azure Active Directory (Azure AD).
You deploy a solution to the app catalog. The solution requests permission to the API.
What should you do in the SharePoint admin center to ensure that the solution can access the API?

  • A. Create an access policy
  • B. Approve a pending permission request
  • C. Enable sandbox solutions
  • D. Create a SharePoint security group and add the solution

正解:B

解説:
Developers building a SharePoint Framework solution that requires access to specific resources secured with Azure AD list these resources along with the required permission scopes in the solution manifest. When deploying the solution package to the app catalog, SharePoint creates permission requests and prompts the administrator to manage the requested permissions. For each requested permission, tenant administrators can decide whether they want to grant or deny the specific permission.
All permissions are granted to the whole tenant and not to a specific application that has requested them.
When the tenant administrator grants a specific permission, it is added to the SharePoint Online Client Extensibility Azure AD application, which is provisioned by Microsoft in every Azure AD and which is used by the SharePoint Framework in the OAuth flow to provide solutions with valid access tokens.


質問 # 114
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. Modify the API permissions of the Azure AD application.
  • B. Generate a new client certificate for the Azure AD application.
  • C. Add OAuth Connection Settings to the Bot Channels Registration.
  • D. Add a new site to the channels of the Bot Channels Registration.

正解:C

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


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

正解:

解説:

Reference:
https://gingkoapp.com/create-tenant-administrator.html


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

正解:B

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


質問 # 117
You are developing a Microsoft Teams application for a support staff.
Within a conversation between the support staff, you want the staff to look up support ticket IDs from a list without opening the ticketing system.
Which feature should the application include?

  • A. a connector
  • B. a messaging extension
  • C. a bot
  • D. a tab

正解:B

解説:
Explanation
Messaging extensions allow users to interact with your web service through buttons and forms in the Microsoft Teams client. They can search, or initiate actions, in an external system from the compose message area, the command box, or directly from a message. You can then send the results of that interaction back to the Microsoft Teams client, typically in the form of a richly formatted card.
Reference:
https://docs.microsoft.com/en-us/microsoftteams/platform/messaging-extensions/what-are-messaging-extensions


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

正解:

解説:


質問 # 119
You need to complete the MSAL.js code for SSO.
Which code segment should you insert at line 06?

  • A. storeAuthStateInCookie: false
  • B. storeAuthStateInCookie: true
  • C. cacheLocation: 'localStorage'
  • D. cacheLocation: 'sessionStorage'

正解:C

解説:
Scenario: Implement single sign-on (SSO) and minimize login prompts across browser tabs.
When your application is open in multiple tabs and you first sign in the user on one tab, the user is also signed in on the other tabs without being prompted. MSAL.js caches the ID token for the user in the browser localStorage and will sign the user in to the application on the other open tabs.
By default, MSAL.js uses sessionStorage which does not allow the session to be shared between tabs. To get SSO between tabs, make sure to set the cacheLocation in MSAL.js to localStorage.
Reference: https://docs.microsoft.com/bs-latn-ba/Azure/active-directory/develop/msal-js-sso Implement Microsoft Identity Question Set 2


質問 # 120
You create an incoming webhook for a Microsoft Teams team channel.
You need to verify the webhook by using PowerShell.
How should you complete the PowerShell command? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:

Reference:
https://techcommunity.microsoft.com/t5/microsoft-365-pnp-blog/how-to-configure-and-use-incoming-webhooks-in-microsoft-teams/ba-p/2051118


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

正解:

解説:

Reference:
https://docs.microsoft.com/en-us/office/dev/add-ins/develop/support-for-task-pane-and-content-add-ins


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

正解:

解説:

Explanation

Box 1: top
Number of items to return in a result
Box 2: skip
$skip Indexes into a result set. Also used by some APIs to implement paging and can be used together with
$top to manually page results.
Reference: https://developer.microsoft.com/en-us/graph/docs/overview/query_parameters


質問 # 123
You are developing a single-page application (SPA).
You plan to access user data from Microsoft Graph by using an AJAX call.
You need to obtain an access token by the Microsoft Authentication Library (MSAL). The solution must minimize authentication prompts.
How should you complete the code segment? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:

Explanation
Graphical user interface, text, application Description automatically generated

Box 1: loginPopup
Box 2: acquireTokenSilent
The pattern for acquiring tokens for APIs with MSAL.js is to first attempt a silent token request by using the acquireTokenSilent method. When this method is called, the library first checks the cache in browser storage to see if a valid token exists and returns it. When no valid token is in the cache, it sends a silent token request to Azure Active Directory (Azure AD) from a hidden iframe. This method also allows the library to renew tokens.
Box 3: acquireTokenPopup
//AcquireToken Failure, send an interactive request.
Example:
userAgentApplication.loginPopup(applicationConfig.graphScopes).then(function (idToken) {
//Login Success
userAgentApplication.acquireTokenSilent(applicationConfig.graphScopes).then(function (accessToken) {
//AcquireToken Success
updateUI();
}, function (error) {
//AcquireToken Failure, send an interactive request.
userAgentApplication.acquireTokenPopup(applicationConfig.graphScopes).then(function (accessToken) { updateUI();
}, function (error) {
console.log(error);
});
})
}, function (error) {
console.log(error);
});
Reference: https://github.com/AzureAD/microsoft-authentication-library-for-js/issues/339


質問 # 124
You have a Iine-of-business (LOB) app named App1.
You need to integrate App1 and Microsoft Teams. The solution must ensure that users can take a picture of a OR code from the Teams client and send the picture to Appl.
What should you use to integrate App1?

  • A. a webhook
  • B. a bot
  • C. A message extension
  • D. a tab

正解:C


質問 # 125
You need to complete the MSAL.js code for SSO.
Which code segment should you insert at line 06?

  • A. storeAuthStateInCookie: false
  • B. storeAuthStateInCookie: true
  • C. cacheLocation: 'localStorage'
  • D. cacheLocation: 'sessionStorage'

正解:C

解説:
Explanation
Scenario: Implement single sign-on (SSO) and minimize login prompts across browser tabs.
When your application is open in multiple tabs and you first sign in the user on one tab, the user is also signed in on the other tabs without being prompted. MSAL.js caches the ID token for the user in the browser localStorage and will sign the user in to the application on the other open tabs.
By default, MSAL.js uses sessionStorage which does not allow the session to be shared between tabs. To get SSO between tabs, make sure to set the cacheLocation in MSAL.js to localStorage.
Reference: https://docs.microsoft.com/bs-latn-ba/Azure/active-directory/develop/msal-js-sso


質問 # 126
You need to develop a leave request app that will use Microsoft Outlook and adaptive cards. The leave requests of an employee will be sent as an actionable message to the employee's managers. When one of the managers performs an action on the actionable message, the other managers must see only the updated message and the action performed by the manager.
How should you complete the adaptive card JSON? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:


質問 # 127
You have a server-side web app that uses OAuth 2.0 and is registered to the Microsoft identity platform.
A user acquires an authorization token.
You need to specify which HTTP header format the user must use to access the app.
What should you specify? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:


質問 # 128
You have a Microsoft 365 tenant that contains a Microsoft SharePoint Online site named Projects.
You need to get a list of documents in the Documents library by using the Microsoft Graph API.
How should you complete the query? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.

正解:

解説:

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


質問 # 129
You are building email notifications for an expensing system.
When a user receives an email notification, the email will contain a comment field. When the user submits a comment, the data will be returned to the expensing system for processing.
What should you do to implement the notification by using the minimum amount of development effort?

  • A. Leverage the Azure SignalR Service and implement web notifications
  • B. Leverage Microsoft Graph notifications
  • C. Configure the expensing system to send actionable messages
  • D. Create a Microsoft Office Add-in that has an action pane to display the notifications

正解:C

解説:
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.
Office 365 provides two solutions to enhance productivity with Outlook Actionable Messages: actionable messages via email, and actionable messages via Office 365 Connectors.
Reference: https://docs.microsoft.com/en-us/outlook/actionable-messages/


質問 # 130
......


Microsoft MS-600認定試験は、Microsoft 365コアサービスを使用してアプリケーションやソリューションを構築する開発者のスキルと知識を測定するために設計されています。この認定は、Microsoft 365テクノロジーやサービスを使用してビジネスに効果的で効率的なソリューションを構築することにおいて、自分の専門知識を証明したい開発者に最適です。

 

Microsoft MS-600実際の問題とブレーン問題集:https://www.jpntest.com/shiken/MS-600-mondaishu

合格させるMS-600試験には更新されたのはMS-600試験問題集PDF2023:https://drive.google.com/open?id=13oDn0nA64YVO07ZfaXBYLm9ssFtLCXxB

弊社を連絡する

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

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

サポート:現在連絡