Courseiva
Process Automation And LogicmediumMultiple ChoiceObjective-mapped

SALESFORCE-PD1 Process Automation And Logic Practice Question

A developer needs to schedule an Apex class to run weekly. Which syntax correctly schedules the job using System.schedule?

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

System.schedule('Weekly Job', '0 0 0 ? * MON *', new MySchedulableClass());

System.schedule requires a job name, a valid CRON expression, and an instance of the Schedulable class.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • System.scheduleBatch(new MySchedulableClass(), 'Weekly Job', 200);

    Why it's wrong here

    Incorrect. scheduleBatch is used for scheduling batch jobs, not standard Schedulable classes.

  • System.enqueueJob(new MySchedulableClass(), '0 0 0 ? * MON *');

    Why it's wrong here

    Incorrect. enqueueJob is used for Queueable Apex and does not accept CRON expressions.

  • System.schedule(new MySchedulableClass(), '0 0 0 ? * MON *');

    Why it's wrong here

    Incorrect. The method signature expects the job name as the first parameter and the CRON string as the second.

  • System.schedule('Weekly Job', '0 0 0 ? * MON *', new MySchedulableClass());

    Why this is correct

    Correct. This provides the job name, valid CRON string, and class instance.

About these practice questions

This SALESFORCE-PD1 question is part of Courseiva's 488-question bank — original exam-style content with full explanations and wrong-answer analysis, never real exam questions or exam dumps. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written and reviewed by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

Last reviewed August 2026 · checked against the official Salesforce exam blueprint

This SALESFORCE-PD1 practice question is part of Courseiva's free Salesforce certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the SALESFORCE-PD1 exam.