Microsoft MS-600 Questions & Answers

Full Version: 245 Q&A

MS-600 Dumps
MS-600 Braindumps MS-600 Real Questions MS-600 Practice Test
MS-600 Actual Questions
Microsoft
MS-600
Building Applications and Solutions with Microsoft 365 Core Services
https://killexams.com/pass4sure/exam-detail/MS-600
Question: 45
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:
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-Organization Config 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
Question: 46
When developing a tab in Microsoft teams, personal, group, and shared tabs can all be implemented as configurable tabs.
Instructions: Review the underlined BOLD text, if it makes the statement correct, select ‘’ No change is needed if the statement is incorrect selct the answer choice that makes the statement correct.
1. No change is needed.
2. Share the same code
3. Be used in a conversation
4. Have a configuration panel
Answer: A Question: 47 HOTSPOT
You have an app that queries Azure Active Directory (Azure AD) by using the Microsoft Graph API.
You need to minimize the number of times users are prompted for their credentials.
How should you complete the code? To answer, select the appropriate options in the answer area. NOTE: Each correct selection is worth one point.
Answer:
Explanation:
Graphical user interface, text, application, email Description automatically generated
Question: 48
You have a single-page application (SPA) named TodoListSPA and a server-based web app named TodoListService. The permissions for the TodoList SPA API are configured as shown in the TodoList SPA 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 should to grant?
1. the Sites.Read.All delegated permission for TodoListService
2. the Sites.Read.All delegated permission for TodoListSpa
3. the Sites.Read.All application permission for TodoListSPA
4. the Sites.Read.All application permission for TodoListService
Answer: A Explanation:
A client application gains access to a resource server by declaring permission requests. Two types are available:
"Delegated" permissions, which specify scope-based access using delegated authorization from the signed-in resource owner, are presented to the resource at run-time as "scp" claims in the client’s access token.
"Application" permissions, which specify role-based access using the client application’s credentials/identity, are presented to the resource at run-time as "roles" claims in the client’s access token.
Reference: https://docs.microsoft.com/en-us/azure/active-directory/develop/developer-glossary#permissions
Question: 49
You are building a custom API.
Client applications will use access tokens to authenticate to the API. You need to validate the integrity of the tokens.
Which three elements should you verity? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
1. the let claim
2. the aud claim
3. the tld claim
4. the JSON Web Token (JWT) signature
5. the exp laim
Answer: B,D,E
Question: 50
Topic 1, ADatum Corporation
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 on 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.
To start the case study
To display the first question in this case study, click the Next button. Use the buttons in the left pane to explore the content of the case study before you answer the questions. Clicking these buttons displays information such as business requirements, existing environment, and problem statements. If the case study has an All Information tab, note that the information displayed is identical to the information displayed on the subsequent tabs. When you are ready to answer a question, click the Question button to return to the question.
Overview
ADatum Corporation develops a software as a service (SaaS) application named E-invoicing. Existing Environment
Application Architecture
E-invoicing consists of a single-page application (SPA) and a backend web service that provides invoice management and processing functionality.
E-invoicing stores all the details of each invoicing operation in a backend cloud database. E-invoicing generates invoices in PDF format and provides users with the ability to download the PDF after it is generated. Each invoice has a unique identifier named invoiceid.
The users have a common workflow where they sign in to E-invoicing, and then open E-invoicing in multiple tabs of a web browser so they can use different parts of the application simultaneously.
Security Architecture
ADatum uses the principle of least privilege whenever possible. ADatum always uses the latest libraries and
integration endpoints. Requirements Business Goals
ADatum wants to integrate E-invoicing, Azure Active Directory (Azure AD), and Microsoft Graph so that their customers can leverage Microsoft Office 365 services directly from within E-invoicing.
Planned Changes
ADatum plans to add the following capabilities to E-invoicing:
* Email the generated invoices to customers on behalf of the current signed-in user. Any emails generated by the system will contain the invoiced.
* Perform as many operations as possible in the browser without having to leave the E-invoicing application.
* Use Azure AD to manage identities, authentication, and authorization.
* Display all emails that contain a specific invoiceid. Technical Requirements
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.
* Send scheduled reminders to customers before a payment due date. Create an administration user interface to enable the scheduled reminders.
* Implement Microsoft Graph change notifications to detect emails from vendors that arrive in a designated mailbox.
* Implement single sign-on (SSO) and minimize login prompts across browser tabs.
* Secure access to the backend web service by using Azure AD.
* Ensure that all solutions use secure coding practices. Backend Security Planned Changes
ADatum wants to use custom application roles to map user functionality to permissions granted to users.
E-invoicing will have internal logic that will dynamically identify whether the user should be allowed to call the backend API.
SSO JavaScript Script
You plan to implement SSO with Microsoft Authentication Library (MSAL) by using the following code:
Access Token JavaScript Script
You have the following JavaScript code to obtain an access token.
Change Notification JSON
You have the following JSON message that will be sent by the Microsoft Graph service to detect the vendor emails.
DRAG DROP
You need to implement the role functionality for the backend web service calls.
Which three actions should you perform in sequence? To answer, move the actions from the list of actions to the answer area and arrange them in the correct order.
Answer:
Question: 51
How can you validate that the JSON notification message is sent from the Microsoft Graph service?
1. The ClientState must match the value provided when subscribing.
2. The user_guid must map to a user ID in the Azure AD tenant of the customer.
3. The tenant ID must match the tenant ID of the customer’s Office 365 tenant.
4. The subscription ID must match the Azure subscription used by ADatum.
Answer: A Explanation:
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
Question: 52
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?
1. Create a Microsoft Office Add-in that has an action pane to display the notifications
2. Leverage Microsoft Graph notifications
3. Leverage the Azure SignalR Service and implement web notifications
4. Configure the expensing system to send actionable messages
Answer: D 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.
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/
Question: 53
What should you add to a SharePoint Framework (SPFx) solution to ensure that the solution can be used as a Microsoft Teams tab?
1. the TeamsTab value to the componentType property in the manifest file
2. a manifest file to the Teams folder in the solution
3. the TeamsTab value to the supportedHosts property in the manifest file
4. a manifest file to the webparts folder in the solution
Answer: D 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".
Reference: https://docs.microsoft.com/en-us/sharepoint/dev/spfx/web-parts/get-started/using-web-part-as-msteams-tab
Question: 54
Which URI should you use to query all the emails that relate to an invoice?
1. Option A
2. Option B
3. Option C
4. Option D
Answer: A
Question: 55
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?
1. a bot
2. a connector
3. a messaging extension
4. a tab
Answer: C 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

User: Théo*****

I want to express my sincere gratitude to killexams.com. Their mock tests were extremely helpful, and I passed the ms-600 exam with their assistance. I highly recommend their resources to anyone preparing for the ms-600 exam.
User: Vitaly*****

I was in a rush to pass the ms-600 exam and obtain my certificate, so I turned to online resources for help. Thats when I stumbled upon killexams.com, and it became my go-to study guide. The site helped me pass the exam, and I am grateful for their reliable and clear study material.
User: Faye*****

I passed the MS-600 exam and was thrilled to see that Killexams adheres to its claims. The actual exam questions provided by Killexams and the exam simulator worked perfectly, and the bundle incorporated everything they promised. The customer support provided by Killexams was excellent, and I was able to get in touch with them whenever I needed help. Overall, I am very happy with this superb product, and I passed the MS-600 exam with a top score, something I never thought was possible.
User: Elsie*****

The MS-600 exam practice test provided by Killexams.com is perfect for quick preparation. The questions and answers helped me score 88% by answering all the questions in just 90 minutes. The MS-600 exam covers a wide range of materials in the commercial enterprise domain, but Killexams.com made it easy for me to choose the best one. I am grateful for their help in achieving my certification.
User: brothersoft*****

Preparing for ms-600 books can be a tricky job, and nine out of ten chances are that you will fail without appropriate guidance. Thats where the best ms-600 book comes in! Killexams.com provides efficient and groovy information that not only enhances your preparation but also gives you a good chance of passing your ms-600 exam and getting into any university without any despair. I scored 42 marks out of 50 and assure you that it will never let you down!

Features of iPass4sure MS-600 Exam

  • Files: PDF / Test Engine
  • Premium Access
  • Online Test Engine
  • Instant download Access
  • Comprehensive Q&A
  • Success Rate
  • Real Questions
  • Updated Regularly
  • Portable Files
  • Unlimited Download
  • 100% Secured
  • Confidentiality: 100%
  • Success Guarantee: 100%
  • Any Hidden Cost: $0.00
  • Auto Recharge: No
  • Updates Intimation: by Email
  • Technical Support: Free
  • PDF Compatibility: Windows, Android, iOS, Linux
  • Test Engine Compatibility: Mac / Windows / Android / iOS / Linux

Premium PDF with 245 Q&A

Get Full Version

All Microsoft Exams

Microsoft Exams

Certification and Entry Test Exams

Complete exam list