Salesforce Certified Platform Developer II — Question 113

The progress of an apex job queued is using the System.enqueueJob method and needs to be monitored.
Which options are valid? (Choose two.)

Answer options

Correct answer: A, C

Explanation

The correct answers are A and C because the Apex Jobs page in setup provides a user-friendly interface to monitor queued jobs, and querying the AsyncApexJob record allows for detailed programmatic access to job status. Option B is incorrect as Queueable Apex records are not directly queryable, and option D is incorrect since the Scheduled Jobs page is for scheduled jobs, not queued jobs.