Salesforce Platform Developer I (legacy) — Question 239
Which aspect of Apex programming is limited due to multitenancy?
Answer options
- A. The number of methods in an Apex class
- B. The number of records returned from database queries
- C. The number of active Apex classes
- D. The number of records processed in a loop
Correct answer: B
Explanation
The correct answer is B because in a multitenant environment, there is a governor limit on the number of records that can be returned from database queries to ensure equitable resource usage among tenants. The other options are not limited by multitenancy in the same way; for instance, the number of methods in a class and active classes can vary independently of multitenancy constraints.