
Ultimate access to all questions.
An upstream system triggers a Databricks Job via the Jobs API and passes a date parameter using the base_parameters configuration (e.g., {"date": "2025-07-26"}). Which Python code snippet must be used within the notebook to retrieve this value and assign it to a variable?_
A
date = spark.conf.get("date")
date = spark.conf.get("date")
B
import sys
date = sys.argv[1]
import sys
date = sys.argv[1]
C
date = dbutils.notebooks.getParam("date")
date = dbutils.notebooks.getParam("date")
D
dbutils.widgets.text("date", "null")
date = dbutils.widgets.get("date")
dbutils.widgets.text("date", "null")
date = dbutils.widgets.get("date")
E
input_dict = input()
date = input_dict["date"]
input_dict = input()
date = input_dict["date"]