RATIONALES 2026 Q&A | INSTANT DOWNLOAD PDF.
Core Domains:
- Configuration and Setup
- Object Manager and Lightning App Builder
- Sales and Marketing Applications
- Service and Support Applications
- Productivity and Collaboration
- Data and Analytics Management
- Workflow/Process Automation
Introduction:
This comprehensive practice assessment is designed to mirror the structure, depth, and rigor of the official Salesforce Certified
Administrator examination. It serves as a critical evaluation tool for candidates seeking to validate their expertise in configuring, managing,
and optimizing Salesforce Lightning environments. The assessment consists of high-fidelity, multiple-choice, and scenario-based questions
that require a blend of foundational theory and advanced problem-solving skills. By focusing heavily on real-world business applications,
administrative governance, regulatory data compliance, and ethical data standards, this test bank challenges candidates to apply critical
thinking and strategic decision-making to complex operational challenges.
Section One: Questions 1–100
Question 1
An administrator at Cloud Kicks needs to ensure that users can only select a specific Asset record on a Case if that Asset is directly related
to the Account listed on the Case. Which feature should the administrator use to enforce this requirement?
A. Master-Detail Relationship
B. Dependent Picklist
C. Lookup Filter
D. Validation Rule
🟢 C. Lookup Filter
🔴 RATIONALE: A lookup filter can be applied to a lookup or master-detail relationship field to restrict valid records based on criteria. In this
scenario, a lookup filter on the Asset field on the Case object can restrict selection to only those Asset records where Asset.AccountId
equals Case.AccountId.
Question 2
The sales director at Ursa Major Solar wants to ensure that opportunity records cannot be moved to the "Closed Won" stage unless a
custom field named "Delivery Installation Date" is populated. Which tool should the administrator use to meet this requirement?
,A. Workflow Rule
B. Validation Rule
C. Approval Process
D. Formula Field
🟢 B. Validation Rule
🔴 RATIONALE: Validation rules evaluate fields and return an error message to the user if the data entered does not meet specified
standards. A validation rule using the criteria ISPICKVAL(StageName, "Closed Won") && ISBLANK(Delivery_Installation_Date__c) will
successfully block record saving until the date is provided.
Question 3
An administrator is tasked with importing 45,000 Lead records into Salesforce from a CSV file. The file contains a mix of new leads and
potential duplicates that need to be updated based on their Email Address. Which data tool is best suited for this task?
A. Data Import Wizard
B. Data Loader
C. Change Sets
D. Schema Builder
🟢 A. Data Import Wizard
🔴 RATIONALE: The Data Import Wizard is the ideal tool for handling up to 50,000 records when duplicate prevention is needed. It natively
supports deduplication for Leads based on Name or Email, whereas Data Loader does not provide automated duplicate checking during
import.
Question 4
Northern Trail Outfitters wants to track specialized certification information for its technicians. A technician can hold multiple certifications,
and a single certification type can be held by multiple technicians. What type of relationship structure should the administrator implement?
A. Hierarchical Relationship
B. Junction Object
C. Indirect Lookup Relationship
D. Master-Detail Relationship
🟢 B. Junction Object
🔴 RATIONALE: A many-to-many relationship in Salesforce requires a junction object. This is implemented by creating a custom object that
contains two master-detail relationship fields pointing to the two parent objects (Technicians and Certifications).
Question 5
A user is locked out of Salesforce after entering an incorrect password too many times. What are two actions an administrator can take to
resolve this issue? (Choose two.)
A. Change the user's Profile password policies.
B. Click Unlock on the user's record detail page.
C. Click Reset Password on the user's record detail page.
D. Edit the user's record and check the Active checkbox.
, 🟢 B. Click Unlock on the user's record detail page.
🟢 C. Click Reset Password on the user's record detail page.
🔴 RATIONALE: When a user is locked out due to login failures, the administrator can either click "Unlock" to restore access with their
existing password, or click "Reset Password" which unlocks the account and emails a link to establish a new password.
Question 6
Universal Containers uses a private sharing model for Opportunities. The sales management team needs visibility into all opportunities
owned by their direct reports. How can the administrator fulfill this requirement?
A. Enable "Grant Access Using Hierarchies" for the Opportunity object.
B. Add sales managers to a Public Group assigned to the records.
C. Create a Criteria-Based Sharing Rule for sales managers.
D. Role Hierarchy automatically grants this access if configured correctly.
🟢 D. Role Hierarchy automatically grants this access if configured correctly.
🔴 RATIONALE: In Salesforce standard objects, including Opportunities, access is automatically granted to managers in the Role Hierarchy
above the record owner, provided the hierarchy is set up correctly. While custom objects allow toggling "Grant Access Using Hierarchies,"
standard objects have this permanently enabled.
Question 7
The marketing team at AW Computing needs to run a multi-stage email campaign where individuals are automatically added to a Salesforce
Campaign based on specific criteria met on their Lead record. Which automation tool should be used?
A. Escalate Action
B. Flow Builder
C. Outbound Message
D. Assignment Rules
🟢 B. Flow Builder
🔴 RATIONALE: Flow Builder is the primary and most robust tool for automated, complex record creation and manipulation based on
specific field changes. It can evaluate Lead criteria and create Campaign Member records dynamically.
Question 8
A Salesforce administrator needs to make sure that a custom field on the Contact object is visible to the Sales team but hidden from the
Support team. Which security feature controls this visibility?
A. Organization-Wide Defaults
B. Sharing Rules
C. Field-Level Security
D. Permission Sets
🟢 C. Field-Level Security
🔴 RATIONALE: Field-Level Security (FLS) controls whether a user can see, edit, or delete a specific field on an object. FLS can be
configured within Profiles or Permission Sets to make a field visible or hidden for specific roles or teams.