Question 74
DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.
Details →You are scheduling a Lakeflow Job using the **Advanced** schedule type with the **Show Cron Syntax** option enabled. Databricks uses Quartz cron syntax, where the six fields are, in order: `seconds minutes hours day-of-month month day-of-week`, and `?` marks an unspecified day field. The job must run **every day at exactly 09:46:00** in the `America/Los_Angeles` time zone. You define the schedule in JSON for the Databricks CLI: ```json { "schedule": { "quartz_cron_expression": "<CRON>", "timezone_id": "America/Los_Angeles", "pause_status": "UNPAUSED" }, "max_concurrent_runs": 1 } ``` Which value should replace `<CRON>` so the job runs daily at 09:46:00 local time?
- A`0 46 9 * * ?`
- B`46 9 0 * * ?`
- C`0 9 46 * * *`
- D`9 46 0 ? * *`