Home › Certifications › Salesforce Platform Administrator
250 multiple-choice questions, 150 flashcards and 10 scenario simulations, organised into 8 chapters, written to the Salesforce Certified Platform Administrator blueprint. Every question carries a full rationale.
Study Salesforce Platform Administrator in CoStudy →
Salesforce Certified Platform Administrator (Plat-Admn-201) — blueprint effective 15 December 2025, replacing the former Salesforce Certified Administrator (ADM-201). Sections: Data and Analytics Management 17%, Configuration and Setup 15%, Object Manager and Lightning App Builder 15%, Automation 15%, Sales and Marketing Applications 10%, Service and Support Applications 10%, Productivity and Collaboration 10%, Agentforce 8%. Workflow Rules and Process Builder reached end of support on 31 December 2025 — existing ones continue to run but no new ones can be created, and Flow Builder is the sole go-forward declarative automation tool with Migrate to Flow as the migration path. Lightning Experience is the assumed UI; Apex and Visualforce are out of scope.
CoStudy's Salesforce Platform Administrator bank holds 410 items organised into 8 chapters that follow the published blueprint. Every multiple-choice question carries a written rationale explaining why the correct answer is correct and why each distractor is tempting but wrong, and the bank includes 10 scenario-based simulations.
Each chapter follows a domain of the published exam outline. Practise one on its own:
A sample of 24 multiple-choice questions from the bank, with the full rationale shown.
Which tool should an admin use to import roughly 200,000 account records?
Answer: B — Data Loader, the supported client application built for high-volume inserts, updates, and bulk loads
B) Correct. Data Loader is the client tool for high-volume loads and can use the Bulk API for large jobs. A) The Data Import Wizard is capped at 50,000 records per import and does not support every object. C) Manual entry cannot scale to this volume or be audited. D) Reports read data; they cannot create records.
A nightly integration file contains a mix of records that already exist in Salesforce and records that are brand new. The source system supplies its own primary key, which has been stored on a custom field in Salesforce. The MOST efficient single operation is:
Answer: D — Upsert the file, matching on the custom field marked as an External ID
D) Correct — upsert matches on an External ID field, updating a record when the key matches and inserting when it does not, which handles both cases in one pass. C) tempts because it does load everything, but it creates duplicates that then need manual cleanup. B) is the two-pass workaround people fall back on when they do not know upsert exists; it works but is not the single efficient operation asked for. A) is close but wrong on the mechanism — matching on Salesforce Id can only update, since new rows have no Id to match.
An admin wants a report to group Opportunity amounts into Small, Medium and Large ranges without adding a field to the object. The BEST tool is:
Answer: A — A bucket column defined on the Amount field within the report
A) Correct — bucket columns categorise numeric or picklist values into named ranges inside the report, with no schema change. B) achieves a similar display but adds a field to the object, which the requirement explicitly rules out. C) tempts because summary formulas do calculate, but they produce values at group level rather than a grouping category. D) misapplies cross filters, which filter on the existence of related records.
Which is the best way to test changes before deploying them to production?
Answer: D — Building in a sandbox, then deploying by change set or the Salesforce CLI
D) Right. Building and testing in a sandbox and then promoting the tested metadata is the standard release pattern. A) Production is live, so mistakes reach users immediately. B) A failed deployment is rejected, but nothing undoes changes made directly in the org. C) Scratch orgs start empty and are not a place to stage production data.
Which Salesforce edition bundles Sales Cloud and Service Cloud out of the box with the highest capacity and support tier?
Answer: D — Unlimited, which bundles both clouds at the highest capacity and support tier
D) Unlimited bundles Sales and Service Cloud together with the largest storage, support and platform allocations. C) Enterprise also bundles both clouds, which is why it tempts, but it sits below Unlimited on capacity and included support. A) Essentials is the small-business entry tier. B) Professional adds CRM depth without full platform extensibility. E) Developer is a free build-and-learn org, not a production edition.
A certified administrator misses the deadline for the required Trailhead maintenance modules. What happens to the credential?
Answer: B — It becomes inactive and is reinstated once the outstanding modules are completed
B) Missing a maintenance deadline moves the credential to an inactive state, and completing the outstanding free Trailhead maintenance modules reactivates it at no cost. A) Nothing is revoked and no re-sit is required, which is the fear this question plays on. C) Credentials do not downgrade. D) Maintenance is mandatory, not advisory. E) There is no purchase involved: the maintenance modules are free on Trailhead.
Which field type stores a pointer from one Salesforce record to another record?
Answer: A — A lookup or master-detail relationship field pointing at the related record
A) Relationship fields are the only field types that store a real reference to another record: lookup is a loose reference, master-detail is a tight one, and external lookup and hierarchical lookup cover external data and the User object. B) and C) store copied values that never stay in sync and give no related lists. D) stores a calendar value only. E) constrains input to a value set but does not link records.
An Account record page is cluttered. The admin wants individual fields to appear only for users in a particular role, without maintaining several page layouts. The MOST appropriate approach is:
Answer: C — Use dynamic forms in the Lightning App Builder with visibility rules on fields
C) Correct — dynamic forms move layout fields into the Lightning record page, where each field or field section can carry its own visibility rule. A) is the pre-dynamic-forms workaround and produces exactly the layout sprawl the admin wants to avoid. B) is a security control, not a display preference, and it removes the data entirely rather than tailoring the page. D) targets the wrong component; the highlights panel does not govern detail fields.
When a Master record is deleted, what happens to Detail records in a Master-Detail relationship?
Answer: E — Both B and D
Master-Detail tight relationship: Detail records require Master, are deleted with it, inherit sharing/security. (B describes the cascade behavior; D is the requirement.) Lookup is the loose alternative if you need independence.
Which tool should an admin use to build a new declarative automation in Salesforce today?
Answer: C — Flow Builder, the go-forward declarative automation tool for all new work
C) Flow Builder is the single go-forward declarative automation tool, spanning record-triggered, scheduled, screen and autolaunched flows. A) and B) reached end of support on 31 December 2025: no new ones can be created and no fixes are issued, though existing active rules and processes keep running until they are moved with the Migrate to Flow tool. D) Code is developer work. E) Macros automate console keystrokes, not record logic.
What does an approval process do in Salesforce?
Answer: C — It routes a submitted record through steps to approvers and fires actions
C) An approval process defines entry criteria, one or more steps with assigned approvers such as the manager, a queue or a named user, and initial, final approval, rejection and recall actions like field updates, emails and record locking. A) Approvals remain a current, supported feature. B) Validation rules are separate. D) Approvals do far more than email. E) Locking applies to records in the process, not the whole object.
A field set by a before-save record-triggered flow is failing a custom validation rule that the admin expected it to satisfy. Regarding the order of execution, which is accurate?
Answer: B — Before-save flows run first, so validation sees the value the flow assigned
B) Correct — before-save record-triggered flows execute before custom validation rules, so validation evaluates the flow's assigned values, which is why the rule is firing on them. A) reverses the sequence and is the most common misreading of the order of execution. C) invents non-determinism; the order is defined and documented. D) confuses before-save with post-commit processing, which happens at the very end.
An admin must let reps drag opportunities between stages from a list view and see a warning on deals with no open activity. Which requirement is NOT satisfied by Kanban configuration alone?
Answer: B — Preventing a drag that would skip a stage in the defined sales process
B) Correct — Kanban does not enforce stage order; blocking a skipped stage requires a validation rule or a record-triggered flow. A) is available: Kanban summarises a numeric field per column. C) is the basic setup step for Kanban and is fully supported. D) is the built-in alert Kanban offers for records lacking activity, so it tempts as the missing capability when it is actually present.
A company captures inquiries through a Web-to-Lead form on its public site. Leads arriving overnight sit unowned until someone notices them. Which configuration MOST directly ensures every submitted lead lands with a named owner?
Answer: D — An active lead assignment rule with a catch-all default lead owner set
D) Correct — Web-to-Lead always runs the active lead assignment rule, and the Default Lead Owner catches anything no rule entry matches, so no lead is ever left stranded. B) tempts because queues do hold leads, but membership is admin-controlled and a queue alone routes nothing without a rule pointing at it. C) fails because owner is always populated by the system on a Web-to-Lead insert, so the rule blocks nothing and solves nothing. A) is a real practice but scoring prioritises leads for humans; it does not assign them.
What happens to the records involved when a qualified Lead is converted?
Answer: D — An account and contact are created, an opportunity optionally, per field mapping
D) Conversion creates or matches an account and a contact and optionally creates an opportunity, moving values across using the lead field mapping defined in Setup. A) The lead is set to a converted status and becomes read-only. B) Campaigns relate to leads but conversion does not produce one. C) The lead is retained for reporting rather than deleted, which is why this tempts. E) Cases are unrelated to lead conversion.
Which is the BEST way to send case status updates to a customer by email?
Answer: C — Use auto-response rules with email templates, with Email-to-Case threading the customer's replies to the case
C) Correct. Auto-response rules send a templated acknowledgement when a case arrives, and Email-to-Case keeps subsequent correspondence threaded on the record. A) Custom code is unnecessary here and outside the admin credential. B) Sharing controls visibility, not outbound email. D) Validation rules block saves; they never message a customer.
Customers should log in to view their own cases and search published knowledge, without buying full Salesforce licences for them. Which option is MOST appropriate?
Answer: D — An Experience Cloud site with a customer licence and sharing sets
D) Correct — an Experience Cloud site with external customer licences, plus sharing sets granting access to records tied to the user's account or contact, delivers authenticated self-service. B) lets customers submit but never view case history. C) is an internal licence type and is the wrong choice for external customers. A) exposes case data to unauthenticated visitors, which fails the login requirement and creates a disclosure risk.
Which statement is TRUE about case teams?
Answer: A — A case team grants named users, roles, or contacts additional access to one specific case with defined roles
A) Correct. Case teams extend access record by record, with team roles determining the access level each member receives. B) Case teams sit on top of the sharing model; org-wide defaults and sharing rules still apply. C) Case teams belong to the case, not the account. D) Case teams remain a supported Service Cloud feature.
Which feature lets users follow a record and see its updates in a feed?
Answer: B — Chatter, where users follow records and people and see posts in their feed
B) Chatter feeds carry field-change posts on followed records plus user posts, comments, mentions and files, so following a record is how a user keeps track of it. A) Subscriptions deliver a report on a schedule, which is the nearest alternative but not a feed. C) Alerts push a single message. D) List views show current data without a change stream. E) Chatter works in the browser as well as on mobile.
Which feature lets a user send a pre-written, merge-field-driven email straight from a lead or contact record?
Answer: A — Email templates used with the Email action on the record's activity composer
A) Email templates supply subject, body and merge fields, and the Email action on the record composer sends them in context and logs the activity. B) Code is out of scope for an admin and is not a send mechanism from the record page. C) and D) present data and cannot send a templated message to a contact. E) List views filter records; sending from one requires a separate mass email or a flow.
An admin must ensure a rep's emails to a customer appear on the related contact and opportunity automatically. Which option is the MOST appropriate?
Answer: B — Enable an email integration that logs messages to related records
B) Correct — the email integration for Outlook or Gmail lets users log messages to Salesforce so they appear on the matched contact and any related record, without manual re-entry. A) is a partially right idea but relies on rep discipline and matches only by address. C) is manual and is what the requirement asks to eliminate. D) tracks field changes in the feed and has nothing to do with logging correspondence.
What is Prompt Builder used for?
Answer: B — Creating reusable prompt templates that merge CRM record data into the instructions sent to the model
B) Correct. Prompt Builder creates grounded, reusable prompt templates whose merge fields, related lists, and flows pull org data into the instruction sent to the model. A) Query tooling lives elsewhere. C) Screen flows are built in Flow Builder. D) Page composition is done in the Lightning App Builder.
An agent returns account information but consistently omits one field that users expect. Permissions on the object are confirmed. Which cause is MOST likely?
Answer: A — The field is hidden from the agent user by field-level security
A) Correct — object access without field access produces exactly this symptom: records come back, one field does not. B) would withhold whole records rather than a single field, and object access was already confirmed. C) likewise affects record visibility, not individual fields. D) invents a restriction; formula fields are readable when field-level security allows.
Which sales feature gives reps AI-assisted guidance and forecasting?
Answer: D — Einstein for Sales: opportunity and lead scoring, forecasting and insights
D) Right. Einstein for Sales supplies opportunity and lead scoring, forecasting insights and activity capture inside the standard sales objects, configured by the admin rather than coded. A) The Service Console is a service workspace. C) Marketing Cloud is a separate product for campaigns. B) Custom development is not the administrator's path to these features.
6 sample cards from the 150 in the bank.
Why can an Agentforce agent fail to see or update a record, and how is it fixed?
An agent runs as a designated agent user, so it is bound by that user's profile, permission sets, object and field-level security, record sharing and org-wide defaults — not by the permissions of the person chatting with it. Fix it by granting the agent user access to the object, fields and records (permission set plus sharing), and by confirming the topic's action is actually assigned to the agent.
What can a delegated administrator do, and what is it never used for?
A delegated administration group lets non-admin users manage users in specified roles and subordinates — creating and editing users, resetting passwords, assigning specified profiles and permission sets, and managing specified custom objects. It never grants the delegate the ability to modify org-wide settings, sharing model or profiles themselves beyond the ones listed.
Dynamic dashboard?
Shows logged-in user's data. Each user sees their own.
App in Salesforce?
Collection of tabs (objects + standard tabs) presented to users.
Why do admins use an External ID field when loading related records from another system?
Upsert combines insert and update in one pass, matching on the record Id or on a custom field marked External ID (and ideally Unique). An External ID also lets you relate child records to parents using the source system's key instead of Salesforce Ids, so you do not have to export parent Ids first. In Data Loader you map the child's lookup or master-detail field to ParentObject:ExternalIdField__c and the relationship resolves on load.
What problem do dynamic forms solve on a Lightning record page?
Dynamic forms let you place individual fields and field sections directly on the Lightning record page and give each its own visibility rules, instead of relying on one monolithic page layout with only record-type-based variation. This reduces the number of page layouts needed and lets fields appear conditionally based on record or user values.
These samples are a small slice. The full bank runs flashcards, multiple choice and timed mock exams with per-chapter progress tracking, on the web and in the iOS app.
Open Salesforce Platform Administrator →
The Salesforce Platform Administrator bank holds 410 items: 250 multiple-choice questions, 150 flashcards and 10 scenario-based simulations. 30 of them are on this page to read free, with no signup.
Yes. Every multiple-choice item carries a written rationale that states the controlling principle behind the correct answer and then addresses each wrong option in turn — why it tempts and precisely where it fails. Knowing why the plausible answer was wrong is worth more than knowing which letter was right.
It is organised into 8 chapters that follow the published exam blueprint: Data and Analytics Management; Configuration and Setup; Object Manager and Lightning App Builder; Automation; Sales and Marketing Applications; Service and Support Applications; Productivity and Collaboration; Agentforce. The number of questions in each chapter is proportional to that domain's published weight, so working through the bank exposes you to roughly the mix the real exam uses.
Salesforce Certified Platform Administrator (Plat-Admn-201) — blueprint effective 15 December 2025, replacing the former Salesforce Certified Administrator (ADM-201). Sections: Data and Analytics Management 17%, Configuration and Setup 15%, Object Manager and Lightning App Builder 15%, Automation 15%, Sales and Marketing Applications 10%, Service and Support Applications 10%, Productivity and Collaboration 10%, Agentforce 8%. Workflow Rules and Process Builder reached end of support on 31 December 2025 — existing ones continue to run but no…
The samples on this page are free to read in full, rationales included, with no account. The complete 410-item bank, the timed mock exams and per-chapter progress tracking are part of CoStudy on the web and in the iOS app.
Last reviewed 2026-08-22. Banks are written against the certifying body's published exam outline and re-checked when that outline changes — exams get renumbered, retired and reweighted, and a bank written to a superseded outline teaches the wrong proportions. Figures that are re-indexed annually are deliberately not asserted as rules; the questions test the governing principle instead.
This bank is written against Salesforce's published exam material. Check the Salesforce credential exam guides for the current outline, fees and eligibility rules — those change, and the certifying body is the only authority on them. CoStudy is not affiliated with Salesforce.