Question 28 A data engineering team is in the process of converting their existing data pipeline to utilize Auto Loader for incremental processing in the ingestion of JSON files. One data engineer comes across the following code block in the Auto Loader documentation: ```python (streaming_df = spark.readStream.format("cloudFiles") .option("cloudFiles.format", "json") .option("cloudFiles.schemaLocation", schemaLocation) .load(sourcePath)) ``` Assuming that `schemaLocation` and `sourcePath` have been set correctly, which of the following changes does the data engineer need to make to convert this code block to use Auto Loader to ingest the data? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz