A data engineer needs to create a table in Databricks using data from a CSV file at location /path/to/csv. They run the following command: ``` CREATE TABLE new_table ______ OPTIONS ( header = "true", delimiter = "|" ) LOCATION "path/to/csv" ``` Which of the following lines of code fills in the above blank to successfully complete the task? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz