Question 70
DP-750 voucher + Udemy course (lifetime access) = ₹3,500 for Indian ID card holders.
Details →You are building a Lakeflow Job composed of four notebook tasks that must honor these precedence constraints: - `ingest_orders` and `ingest_customers` have no upstream dependencies and can run in parallel. - `build_silver` must run only after **both** `ingest_orders` and `ingest_customers` have completed successfully. - `publish_gold` must run only after `build_silver` succeeds. You must wire the **Depends on** field of each task so the resulting Directed Acyclic Graph (DAG) enforces the precedence above and runs the two ingestion tasks in parallel. Drag each task tile into the slot that specifies its correct **Depends on** configuration. ```mermaid flowchart TD IO["ingest_orders"] --> BS["build_silver"] IC["ingest_customers"] --> BS BS --> PG["publish_gold"] subgraph Slots["Depends on configuration (slots)"] Sa["Slot A — Depends on: (none)"] Sb["Slot B — Depends on: (none)"] Sc["Slot C — Depends on: ingest_orders, ingest_customers (Run if: All succeeded)"] Sd["Slot D — Depends on: build_silver (Run if: All succeeded)"] end ```