SP Study Guide 2026
Everything you need to pass the SP exam in one place: the exam format, every topic to study, real practice questions with explanations, flashcards, and full-length practice tests. Free, no sign-up needed.
📋 SP Exam Format at a Glance
📚 SP Topics to Study (63)
✍️ Sample SP Questions & Answers
1. What type of certification might a training and education service provider require?
ISO 29993 is a specific international standard for learning services outside formal education. It provides requirements for learning service providers, ensuring the quality and effectiveness of their non-formal education and training services. This certification helps demonstrate a provider's commitment to high-quality learning experiences.
2. An insurance company implementing Salesforce wants agents to quickly generate policy quotes. Which Salesforce product streamlines the configure-price-quote process for complex insurance products?
Vlocity (now Salesforce Industries CPQ) is purpose-built for industries like insurance with complex product configurations and regulatory requirements.
3. What is the difference between compiled and interpreted languages?
Compiled languages are fully translated before execution, while interpreted languages are translated during runtime.
4. What is the key difference between `RunLocalTests` and `RunAllTestsInOrg` test levels during deployment?
`RunLocalTests` excludes managed package test classes, while `RunAllTestsInOrg` includes every test in the org including those from managed packages.
5. What is the function of a Salesforce 'Profile' in the security model?
A Profile defines baseline permissions including object CRUD access, field-level security, app access, login hours, and system permissions for all users assigned to it.
6. A business process requires Salesforce to call an external REST API within a trigger context. What is the primary architectural risk and its mitigation?
Callouts from trigger context are prohibited after DML; using @future or Queueable Apex makes the callout asynchronous and avoids the restriction.