CSA Developer Fundamentals 2 — Questions and Answers
Question 1: Which Salesforce tool allows administrators to point-and-click to build automated processes that span multiple objects and criteria without writing code?
- Apex Triggers
- Process Builder (Correct answer)
- SOQL Query Tool
- Schema Builder
Correct answer: Process Builder
Process Builder is a declarative automation tool that lets admins build multi-step processes using a visual interface without code.
Question 2: What is a 'sandbox' in Salesforce used for?
- Storing archived records
- Testing and development without affecting production data (Correct answer)
- Hosting public-facing web pages
- Running scheduled Apex jobs
Correct answer: Testing and development without affecting production data
A sandbox is an isolated copy of a production org used for development, testing, and training without risking live data.
Question 3: Which type of sandbox is a full copy of the production org, including all data?
- Developer Sandbox
- Developer Pro Sandbox
- Partial Copy Sandbox
- Full Sandbox (Correct answer)
Correct answer: Full Sandbox
A Full Sandbox replicates the entire production org including all data, making it the most complete testing environment.
Question 4: What does SOQL stand for in Salesforce?
- Salesforce Object Query Language (Correct answer)
- Standard Object Query Logic
- Salesforce Oriented Question Language
- System Object Query Layer
Correct answer: Salesforce Object Query Language
SOQL stands for Salesforce Object Query Language, used to query records from the Salesforce database.
Question 5: Which Salesforce feature allows admins to deploy configuration changes from a sandbox to production using a manifest file?
- Data Loader
- Change Sets (Correct answer)
- Schema Builder
- Workflow Rules
Correct answer: Change Sets
Change Sets allow admins to package and deploy metadata (like fields, layouts, and workflows) between related Salesforce orgs.
Question 6: In Salesforce, what is an 'API Name' used for?
- Displaying the field label in the UI
- Uniquely identifying metadata components in code and integrations (Correct answer)
- Setting field-level security permissions
- Defining the field's data type
Correct answer: Uniquely identifying metadata components in code and integrations
An API name is the unique programmatic identifier for metadata like fields and objects, used in code, formulas, and integrations.
Question 7: What is the purpose of the Salesforce Developer Console?
- Managing user licenses
- A web-based IDE for writing, testing, and debugging code in Salesforce (Correct answer)
- Configuring page layouts
- Managing connected apps
Correct answer: A web-based IDE for writing, testing, and debugging code in Salesforce
The Developer Console is a built-in IDE that lets developers and admins write Apex, run SOQL queries, and debug logs.
Which Salesforce tool allows administrators to point-and-click to build automated processes that span multiple objects and criteria without writing code?