A data engineer has created a new managed Delta table named `students` in the `university` database using the following SQL DDL: ```sql CREATE DATABASE IF NOT EXISTS university; USE university; CREATE OR REPLACE TABLE students(id INT, name STRING, age INT, course STRING); ``` Where will the data files for this table be stored? | Databricks Certified Data Engineer - Associate Quiz - LeetQuiz