Plat-Admn-202 Exam Preparation Material | Salesforce Certified Platform App Builder

Prepare for the Plat-Admn-202 with reliable study materials, practice questions, and key exam insights.

Prepare for the Plat-Admn-202 Salesforce Certified Platform App Builder exam with CertQueen's independently developed study resources. Review important concepts, practice scenario-based questions, and use clear explanations to identify areas that require further study.

Question#1

Universal Containers uses a custom picklist field Account Region on the account record. They want this region to be reflected on all related contact records and stay in sync if the value of this field changes on the Account.
How should an app builder meet this requirement?

A. Create a picklist field called 'Account Region' on Contact object > Create a workflow rule to update this picklist field if the Account Region field on the Account is changed.
B. Create a formula field on the Contact object > Set the value of the formula to ISPICKVAL(Account.Account_Region__c).
C. Create a formula field on the Contact object > Set the value of the formula to TEXT(Account.Account_Region__c).
D. Create a text field called 'Account Region' on Contact object > Create a workflow ruleto update this picklist field if the Account Region field on the Account is changed.

Explanation:
Creating a formula field on the Contact object and setting the value of the formula to TEXT(Account.Account_Region__c) would reflect the region of the related account on the contact record and stay in sync if the value changes on the account. This is the most efficient and maintainable way to meet the requirement. Creating a workflow rule or a picklist field would require additional configuration and complexity

Question#2

Universal Containers asked the app builder to ensure when an account type changes to 'Past-Customer' the contacts directly related to that account get an updated status of 'Re-Market'.
Which automation should the app builder use to accomplish this task?

A. Screen flow
B. Lightning component
C. Validation rule
D. Record triggered flow

Explanation:
For automatically updating contact statuses when an account type changes:
D. Record triggered flow. This type of automation can monitor changes in account types and accordingly update related records, such as contacts.
Steps to implement:
Navigate to Setup → Flows.
Create a new Flow and choose the record-triggered flow type.
Configure the flow to trigger when the Account record is updated to 'Past-Customer'.
Add an Update Records element to modify all related contacts, setting their status to 'Re-Market'.
Activate the flow.
This automation ensures that contact statuses are updated in real-time when their related account's type changes, maintaining data consistency and relevancy.
For more on record-triggered flows, check out Salesforce's Record-Triggered Flows documentation.

Question#3

Universal Containers wants to create a custom checkbox formula field on the Opportunity object.
This formula should evaluate to true if the following conditions are met:
* Stage is set to Negotiation/Review
* Close Date is less than 1 week away
Which formula meets these requirements?
A)



B)



C)



D)


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

Explanation:
For a formula to evaluate to true when the stage is set to "Negotiation/Review" and the close date is less than one week away, the correct formula is:
Option
B. This formula uses the ISPICKVAL function to check the text value of a picklist and compares the CloseDate to a week from today:
AND( I AND(
ISPICKVAL(StageName, "Negotiation/Review"),
CloseDate - 7 < TODAY()
)SPICKVAL(StageName, "Negotiation/Review"), CloseDate - 7 < TODAY() )
This formula checks that both conditions are met: it confirms the stage name is "Negotiation/Review" and that the CloseDate is within the next 7 days from the current date.
Option A lacks the ISPICKVAL function necessary for evaluating picklist fields.
Option C uses DAY(7) which is not a valid Salesforce formula expression.
Option D also uses DAY(7) incorrectly and fails to use the ISPICKVAL function.
Reference for creating formula fields in Salesforce:
Formula Field
Reference: https: //help.salesforce.com/articleView?id=sf.customize_functions.htm&type=5

Question#4

Northern Trail Outfitters (NTO) has created the custom objects Trail and Park in Salesforce to track trails and parks respectively. NTO wants to track the total number of trails a park has on the park record without writing any code.
Which two actions should an app builder take to accomplish this requirement? Choose 2 answers

A. Use a formula field on the Park record to show the total number of trails.
B. Use a roll-up summary field on the Park record to show the total number of Trails.
C. Use a master-detail relationship between the Park and Trail objects.
D. Use a lookup relationship between the Park and Trail objects.

Explanation:
To track the total number of trails associated with a park without writing code, the correct actions to take are:
Use a roll-up summary field on the Park record to show the total number of Trails (B). Roll-up summary fields calculate and display a value in a master record based on the values of fields in a detail record. They are used to count, sum, average, or get the minimum/maximum of values in related detail records.
Use a master-detail relationship between the Park and Trail objects (C). Master-detail relationships are necessary for roll-up summary fields as they allow the master object to control certain behaviors of the detail object and summarize data from those detail records.
A formula field (A) cannot dynamically count related records unless those records are linked via a master-detail relationship, and it cannot alone handle counts across related records without such a relationship. A lookup relationship (D) does not support roll-up summaries unless combined with additional tools like triggers or third-party apps, which involve coding or extra configuration outside standard object setup.
For more details, refer to the Salesforce Help documentation on master-detail relationships and roll-up summary fields:
Master-Detail Relationship:
https: //help.salesforce.com/articleView?id=relationships_considerations.htm&type=5
Roll-Up Summary Fields:
https: //help.salesforce.com/articleView?id=fields_about_roll_up_summary_fields.htm&type=5

Question#5

The Director of Customer Service wants to receive a notification when a case stays in the New status for more than four business hours.
Which two automation processes should be used to accomplish this?

A. Validation Rule
B. Escalation Rules
C. Scheduled Apex
D. Flow Builder

Explanation:
The requirement is time-based (Case in New status > 4 business hours) and requires a notification.
Escalation Rules can monitor case age and trigger escalation or notifications after a specified period.
Flow Builder (Scheduled Path or Scheduled Trigger Flow) can be used to evaluate business hours and send alerts.
Why B (Escalation Rules) is correct: Exact Extract: “Escalation rules automatically escalate cases when they meet certain criteria, such as the age of the case, and can notify users or change ownership.” ― Salesforce Help | Case Escalation RulesEscalation rules are ideal for service teams and time-based escalation scenarios.
Why B (Escalation Rules) is correct: Exact Extract: “Escalation rules automatically escalate cases when they meet certain criteria, such as the age of the case, and can notify users or change ownership.” ― Salesforce Help | Case Escalation RulesEscalation rules are ideal for service teams and time-based escalation scenarios.
Why D (Flow Builder) is correct: Exact Extract: “Use scheduled paths in record-triggered flows to perform actions after a certain amount of time has passed since the record was created or updated.”
― Salesforce Help | Scheduled Paths in Flow BuilderA Scheduled Path in a record-triggered flow can evaluate the Case’s age in hours and send an email alert if the Status remains “New.”
Why D (Flow Builder) is correct: Exact Extract: “Use scheduled paths in record-triggered flows to perform actions after a certain amount of time has passed since the record was created or updated.”
― Salesforce Help | Scheduled Paths in Flow BuilderA Scheduled Path in a record-triggered flow can evaluate the Case’s age in hours and send an email alert if the Status remains “New.”
Why not A: Validation Rules prevent saving invalid data but cannot evaluate elapsed time.
Why not C: Scheduled Apex would work technically but is a code-based solution; declarative automation (Flow or Escalation) is preferred for App Builder certification.
Reference: Salesforce Help | Case Escalation Rules
Salesforce Help | Scheduled Paths in Flow Builder
Salesforce Platform App Builder Exam Guide | Business Logic and Process Automation

Exam CodePlat-Admn-202
Q & A: 311 Q&As         Updated:  Sep 21,2026

 

 Access Complete Plat-Admn-202 Preparation Material

What This Plat-Admn-202 Study Resource Helps You Do

Review Key Concepts

Review the technologies, products, processes, and practical skills covered by the current Plat-Admn-202 exam objectives.

Practice Scenario-Based Questions

Work through independently developed questions designed to strengthen your understanding of technical scenarios and decision-making.

Identify Knowledge Gaps

Use your results and the provided explanations to find weaker areas and focus your study more effectively.

How to Use This Plat-Admn-202 Preparation Material

Review the Exam Scope

Start by reviewing the topics covered by the Plat-Admn-202 exam. Compare them with the official exam objectives to understand the required technologies, operational tasks, and practical skills, then identify the areas that deserve the most attention.

Practice Independently

Complete a focused set of practice questions for each topic. On your first attempt, avoid referring to notes, answers, or other study resources so that you can evaluate your current understanding more accurately.

Study the Explanations

Review the answers and explanations after completing each practice session. Understand why the correct option is appropriate for the given scenario and why the other options may be incorrect or less suitable.

Close Knowledge Gaps

Keep track of incorrect answers, unfamiliar concepts, and weaker knowledge areas. Review these topics using official documentation and practical experience, then answer the related questions again to reinforce your understanding and monitor your progress.

Independent Plat-Admn-202 Preparation Resource

CertQueen independently develops its certification study materials for educational purposes. The practice questions are not copied from, recalled from, or presented as live or official exam questions.

CertQueen is not affiliated with, endorsed by, sponsored by, or authorized by any certification provider. Certification names, exam codes, product names, and related trademarks are the property of their respective owners and are referenced only for identification and educational purposes.

Exam Code: Plat-Admn-202
Q & A: 311 Q&As
Updated:  Sep 21,2026

 

 Access Complete Plat-Admn-202 Preparation Material