If Apex code executes inside the execute() method of an Apex class when implementing the Batchable interface, which two statements are true regarding governor limits?
Choose 2 answers
A.
The Apex governor limits are reset for each iteration of the execute () method.
B.
The Apex governor limits cannot be exceeded due to the asynchronaus nature of the transaction.
C.
The Apex governor limits will use the asynchronous limit levels.
D.
The Apex governor limits are omitted while calling the constructor of the Apex class.
Option A: Governor limits are reset for each execution of theexecute()method in a batch job because each batch is treated as a separate transaction.
Option C: Batch jobs use asynchronous governor limits, which are higher than synchronous limits.
Apex Governor Limits Documentation
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit