Checklist progress
0/194Learned
Platform Developer
Study Checklist
Checklist progress
0/194Learned
Understand multi-tenant concepts and design frameworks, such as MVC architecture and Lightning Component Framework.
0/6
Given a scenario, identify common use cases and best practices for declarative versus programmatic customizations, including governor limits, formula fields, and roll-up summaries.
0/8
Flow versus Apex for automation
Learn this conceptValidation rules versus Apex triggers for data enforcement
Learn this conceptFormula fields versus Apex for computed values
Learn this conceptFormula fields versus roll-up summary fields
Learn this conceptRoll-up summary relationship rules
Learn this conceptSupported roll-up aggregate functions
Learn this conceptSOQL and DML per-transaction governor limits
Learn this conceptHeap size and CPU time governor limits
Learn this conceptGiven a scenario, determine, create, and access the appropriate data model including objects, fields, relationships, and external IDs.
0/8
Understand use cases and limitations of using Agentforce for Developers.
0/3
Prepare for the Exam
Study Community
Ask questions and get the latest info from other Platform Developer studiers.
Each Apex transaction is capped on how many SOQL queries and DML statements it can issue and how many records those operations can touch, because Apex shares a multitenant runtime. If code exceeds a cap, the governor throws a runtime exception that cannot be handled, so queries and writes must run in bulk rather than once per record. Flow is governed by the same per-transaction SOQL and DML caps, and an autolaunched flow shares the parent transaction's remaining budget.