Salesforce Quiz
Salesforce platform concepts — objects, workflows, and the configuration/development knowledge behind the CRM.
This category currently has 100 questions in the SERVBG quiz bank. Below are a few sample questions — the full interactive quiz shuffles through the whole set with instant scoring.
Sample questions
What is the governor limit for the maximum number of SOQL queries issued in a single synchronous Apex transaction?
- 150
- 500
- 100
- 50
- 200
Which interface must a class implement to be executed as a Batch Apex job?
- Database.Batchable<SObject>
- Schedulable
- Iterable<SObject>
- Database.Stateful
- Queueable
A Batch Apex job uses Database.QueryLocator in start(). What is the maximum number of records it can process across all execute() chunks?
- 50,000,000
- 10,000,000
- 500,000
- 5,000,000
- 1,000,000
Which Apex future method annotation correctly declares a method that performs a callout to an external service?
- @future(async=true)
- @future(http=true)
- @future(callout=true)
- @future(callout=enabled)
- @future(external=true)
When chaining Queueable jobs, what is the maximum chain depth allowed in production orgs?
- 10 levels deep in production only
- 3 levels deep in production orgs
- There is no documented chain-depth limit in production; only 1 level of chaining is allowed in Developer Edition / sandbox during a single transaction
- Unlimited chaining is allowed in all org types
- 5 levels deep in all orgs
Related categories
Python (Coding)
Python syntax, standard-library usage, and the language idioms that come up in day-to-day scripting and application work.
JavaScript (Coding)
Core JavaScript language behavior, async patterns, and the quirks that trip up both beginners and experienced developers.
Linux
Linux command-line usage, file permissions, process management, and the everyday admin tasks every sysadmin and developer needs.
Security
General information security concepts — threats, defenses, and the fundamentals every IT professional should know.
Hardware
Computer hardware components, how they interact, and the troubleshooting knowledge behind keeping systems running.