PREP 2026 QUESTIONS AND CORRECT
SOLUTIONS ALREADY PASSED
⩥ What must the Controller for a Visulforce page utilize to override
the standard Opportunity view button?
A. The StandardSetController to support related lists for pagination
B. The Opportunity StandardController for pre-built functionality
C. A callback constructor to reference the StandardController
D. A constructor that initialized a private Opportunity variable..
Answer: B. The Opportunity StandardController for pre-built
functionality
⩥ What would a developer do to update a picklist field on a related
Opportunity records when a modification to the associated Account
record is detected?
A. Create a process with a process builder.
B. Create a Workflow Rule with a field update.
C. Create a Lightning component.
D. Create a Visualforce page.. Answer: A. Create a process with a
process builder.
⩥ Which requirement needs to be implemented using standard
workflow instead of Process Builder? Choose 2 answers
,A. Create activities at multiple intervals
B. Send outbound message without Apex code
C. Copy an account address to its contacts
D. Submit a contract for approval. Answer: A. Create activities at
multiple intervals
B. Send outbound message without Apex code
⩥ An org has different Apex classes that provide Account-related
functionality. After a new validation rule is added to the Account
object, many of the test methods fail.
What can be done to resolve failures and reduce the number of code
changes needed in future validation rules? Choose 2 answers.
A. Create a method that creates valid Account records, and call this
method from within test methods.
B. Create a method that loads valid Account records from static
resource, and call this method within test methods.
C. Create a method that performs a callout for a valid Account record,
and call this method within test methods.
D. Create a method that queries for valid Account records, and call
this method within test methods.. Answer: A. Create a method that
creates valid Account records, and call this method from within test
methods.
B. Create a method that loads valid Account records from static
resource, and call this method within test methods.
,⩥ Which component is available to deploy using Metadata API?
Choose 2 answers.
A. Case Layout
B. Account Layout
C. Case Feed Layout
D. Console Layout. Answer: A. Case Layout
B. Account Layout
⩥ In the code below, what type does Boolean inherit from?
Boolean b = true;
A. Enum
B. Object
C. String
D. Class. Answer: B. Object
⩥ What is the preferred way of accessing web content—such as
images, stylesheets, JavaScript, and other libraries—that is used in
Visualforce pages?
A. By accessing the content from Chatter Files.
B. By uploading the content in the documents tab.
C. By accessing the content from a third-party CDN.
, D. By uploading the content as a Static Resource.. Answer: D. By
uploading the content as a Static Resource.
⩥ A company has a custom object named Warehouse. Each
Warehouse record has a distinct record owner, and is related to parent
Account in Salesforce.
Which kind of relationship would the developer use to relate the
Account to the warehouse?
A. One-to-Many
B. Lookup
C. Master-Detail
D. Parent-Child. Answer: B. Lookup
⩥ A developer creates a Workflow Rule declaratively that updates a
field on an Object. An Apex trigger exists for the object.
What happens when a user updates a record?
A. No changes are made to the data.
B. Both Apex Trigger and Workflow Rule are fired only once.
C. The workflow Rules is fired more than once.
D. The Apex Trigger is fired more than once.. Answer: D. The Apex
Trigger is fired more than once.