Microsoft Microsoft Certifications PL-400 Questions & Answers
Question 181:
You need to ensure that users can create the required charts.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Create a quick view form to show the Accounts entity.
B. Configure filter fields in the Annual revenue field.
C. Add the Facility field to the account form.
D. Delete the Annual revenue field from the account form.
E. Create a view with annual revenue sorted lowest value to highest value.
Correct Answer: BC
Pharmacy orders must be displayed in four graphs as follows:
1.
Annual revenue over $100,000
2.
Annual revenues under $100,000
3.
Research facilities
4.
Hospitals
The graphs must be interactive, and users must be able to drill down on any dimension.
Question 182:
You need to configure the app to meet the address verification requirements.
Which two actions should you perform? Each correct answer presents part of the solution.
NOTE: Each correct selection is worth one point.
A. Make the address fields read-only after they have been verified.
B. Open a confirmation dialog when the command bar button is selected.
C. Enable the command bar button only when the address shows as not verified.
D. Clear the field indicating the address is valid when an address field changes.
Correct Answer: AC
Note: Requirements. Driving record verification
1.
Driving record verification must only be performed once for each candidate.
2.
Information required for driving record verification must be sent to the driving record verification service automatically after the candidate's address is verified.
3.
The API must return a value of either Approved or Rejected to indicate whether the candidate has met the company's requirements.
Question 183:
You need to resolve the address validation API error. Which method should you use to connect?
A. an Azure function triggered by a webhook
B. JavaScript code
C. a custom connector used in a cloud flow
D. a plug-in attached to a custom action called from JavaScript
Correct Answer: C
* Issues. Address verification
Users report that the address verification API returns the following error message: The Same Origin Policy disallows reading the remote resource.
* Cross-origin resource sharing (CORS) is disabled for all three APIs.
Question 184:
You need to implement the background verification check stage field. Which type of field should you use?
A. Choice
B. Status
C. Choices
D. Lookup
Correct Answer: B
The solution must include fields for the candidate's record to represent each stage.
Question 185:
You need to connect to the background check API. Which mechanism should you use?
A. JavaScript
B. Flow with a custom connector
C. Azure Function
D. Plug-in
Correct Answer: B
While Azure Logic Apps, Microsoft Power Automate, and Microsoft Power Apps offer over 325+ connectors to connect to Microsoft and verified services, you may want to communicate with services that aren't available as prebuilt connectors.
Custom connectors address this scenario by allowing you to create (and even share) a connector with its own triggers and actions.
Note:
Each of the third-party services charge per result. Northwind wants to perform the background check processes only when necessary to minimize costs.
You need to determine the cause for the issue reported by the interviewers. What is the root cause of the issue?
A. There was an error in the event pipeline and the entire transaction was rolled back.
B. There is no plug-in registered to run when an interview record is created.
C. The plug-in used to synchronize the Person of Interest field from Contact to Interview was not triggered.
Correct Answer: B
Requirements: Interviewers must get an email notification when the Person of Interest field on the interview record is successfully updated. Issue: Interviewers report that they do not receive email notifications when interview records are created for an existing person of interest.
Question 187:
You need to track referrals. What should you do?
A. Add a referral source field to the Application table.
B. Create a new Referral table with required lookup columns to the Contact, SystemUser, and Application tables.
C. Add a second lookup column to SystemUser for manager referrals to the Application table.
D. Create a new Referral table with required lookup columns to the Contact, SystemUser, and JobPosting tables.
Correct Answer: A
Case study: The system must track referrals even if an application is not completed.
Only a single referral can be made per job application. The system must be able to support multiple referrals for a candidate.
The company has the following Microsoft Dataverse tables and columns
Referral
-Contact - lookup to Contact
-Referrer - lookup to SystemUser
-Job Posting - lookup to JobPosting Application proapplication
-Contact identifier, Contact - lookup to Contact
-Job Posting - lookup to JobPosting
-pro_recruiterassignedid
Need to able to link applications with referrals.
Incorrect:
Not B: A lookup field from the Referral table to the Application would mean that an Application could have more than one referral.
Not D: Lookup columns to the Contact, SystemUser, and JobPosting tables already exists in the old Referral table.
Requirements. Historical Information Tracking
You must create a process to identify individuals as a person of interest that the company should consider hiring. You must assign each individual a score based on their past interactions.
You must be able to determine the following information about a candidate:
-
The number of interviews in the past two years and whether team members provided recommendations
-
The number of hiring manager referrals and employee referrals in the past two years
-Whether the individual has any of the 12 designations or certifications that the company considers significant
Only a single referral can be made per job application. The system must be able to support multiple referrals for a candidate.
The system must track referrals even if an application is not completed.
Question 188:
You need to configure the PCF control to display team members for interview scheduling. Which two inputs should you use? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
A. identifier for the hiring manager
B. time-zone offset for the job candidate
C. identifier for the job posting
D. time-zone offset for the hiring manager
E. identifier for the job candidate
Correct Answer: BE
Requirements. Interview Scheduling
The system must provide recruiters with a list of team members and their time-zone information. You must create a Microsoft Power Apps Component Framework (PCF) control for the Job Application form to display a list of senior team members who report directly to a hiring manager.
1.
The control must display the current time in each team member's local time.
2.
The control must be bound so that it minimizes the amount of code that must be written.
3.
You must display the list of team members and sort the list to show team members who reside in time zones closest to the applicant's time zone first.
Also: Recruiters schedule an interview with a hiring manager and interviews with two senior team members. Each interview results in feedback about the candidate and a recommendation whether to hire or not.
The interview scheduling process may force potential candidates to accept interviews at unusual times with the senior team members due to time-zone differences.
You must develop a second PCF control that displays the time-zone name and current time on the Job Application form. You must display the data in the candidate's local time.
Question 189:
You need to resolve the issue with the new command button. What should you do?
A. Pass ExecutionContext to the function in the action definition.
B. Pass the value SelectedControl to the function in the action definition.
C. Select the Pass execution context as first parameter option on the event registration form.
D. Pass the value PrimaryControl to the function in the action definition.
Correct Answer: C
Requirements. Historical Information Scoring
The automated process must run weekly to assess all candidates. The process must also run automatically when historical information is updated. You must be able to perform scoring by selecting a command button on the contact form.
This new command button must only be visible to employees who belong to a security role assigned named Recruiter. The command button must not be visible to anyone unless the contact form is in Update mode.
The execution context defines the event context in which your code executes.
The execution context defines the event context in which your code executes. The execution context is passed when an event occurs on a form or grid, which you can use it in your event handler to perform various tasks such as determine
formContext or gridContext, or manage the save event.
The execution context is passed in one of the following ways:
1.
Defining event handlers using UI: The execution context is an optional parameter that can be passed to a JavaScript library function through an event handler. Use the Pass execution context as first parameter option in the Handler Properties dialog while specify the name of the function to pass the event execution context. The execution context is the first parameter passed to a function.
2.
Defining event handlers using code: The execution context is automatically passed as the first parameter to functions set using code.
You need to prevent the field used by the PCF control from updating the record.
What are two possible ways to achieve the goal? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
A. Create a business rule to clear the field value.
B. Make the field read-only.
C. Call the setSubmitMode(‘never’)function on the field.
D. Disable existing event handlers on the field.
Correct Answer: BC
B: Overview of column-level security Column-level security is available for the default columns on most out-of-box tables, custom columns, and custom columns on custom tables. Column-level security is managed by the security profiles. To implement column-level security, a system administrator performs the following tasks.
Enable column security on one or more columns for a given table.
Associate one more existing security profiles, or create one or more new security profiles to grant the appropriate access to specific users or teams.
A security profile determines the following: Permissions to the secure columns Users and teams assigned access
A security profile can be configured to grant user or team members the following permissions at the column level:
Read. Read-only access to the column's data.
Create. Users or teams in this profile can add data to this column when creating a row.
Update. Users or teams in this profile can update the column's data after it has been created.
C: setSubmitMode sets whether data from the column will be submitted when the record is saved.
Description: Set one of the following mode values:
always: The data is always sent with a save.
never: The data is never sent with a save. When this value is used, the column(s) in the form for this column cannot be edited.
dirty: Default behavior. The data is sent with the save when it has changed.
Remarks
Use this method to control when data for a column is submitted when a record is created or saved. For example, you may have a column on the form that is only intended to control logic in the form. You are not interested in capturing the data
in it. You might set it so that the data is not saved. Or you may have a Plugin that depends on the value always being included. You may want to set the column so that it will always be included.
Nowadays, the certification exams become more and more important and required by more and more enterprises when applying for a job. But how to prepare for the exam effectively? How to prepare for the exam in a short time with less efforts? How to get a ideal result and how to find the most reliable resources? Here on Vcedump.com, you will find all the answers. Vcedump.com provide not only Microsoft exam questions, answers and explanations but also complete assistance on your exam preparation and certification application. If you are confused on your PL-400 exam preparations and Microsoft certification application, do not hesitate to visit our Vcedump.com to find your solutions here.