1. What is a key benefit of managing Databricks notebooks in Git-backed Repos for CI/CD?
- A. Version history, code review, and branch-based collaboration before changes reach production✓ Correct
- B. It automatically trains ML models
- C. It removes the need for any testing
- D. It stores the pipeline's output data
Explanation
Git-backed Repos give version history, pull-request review, and branching so changes are reviewed before release. It doesn't train models (B), remove testing (C), or store output data (D).