A data engineer has configured a Structured Streaming job to read from a table, manipulate the data, and then perform a streaming write into a new table. The code block used by the data engineer is below: ``` (spark.table("sales") .withcolumn("avg_price", col("sales")/ col("units")) .writestream .option("checkpointLocation", checkpointpath) .outputMode("complete") _____ .table("new_sales")) ``` If the data engineer only wants the query to execute a micro-batch to process data every 5 seconds, which of the following lines of code should the data engineer use to fill in the blank? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz