1. What is an OPERATOR in Airflow?
- A. A template that defines a single unit of work; instantiating it creates a task✓ Correct
- B. The scheduler process
- C. A database connection string
- D. The web UI
Explanation
An operator is a predefined template for a unit of work (e.g., run Bash, run Python, transfer data); when you instantiate an operator in a DAG, you create a task. It's not the scheduler (B), a connection (C), or the UI (D).