Databricks Certified Data Analyst Associate Exam Practice Questions (P. 4)
- Full Access (45 questions)
- Six months of Premium Access
- Access to one million comments
- Seamless ChatGPT Integration
- Ability to download PDF files
- Anki Flashcard files for revision
- No Captcha & No AdSense
- Advanced Exam Configuration
Question #16
Which of the following benefits of using Databricks SQL is provided by Data Explorer?
- AIt can be used to run UPDATE queries to update any tables in a database.
- BIt can be used to view metadata and data, as well as view/change permissions.Most Voted
- CIt can be used to produce dashboards that allow data exploration.
- DIt can be used to make visualizations that can be shared with stakeholders.
- EIt can be used to connect to third party BI cools.
Correct Answer:
B
B
send
light_mode
delete
Question #17
The stakeholders.customers table has 15 columns and 3,000 rows of data. The following command is run:

After running SELECT * FROM stakeholders.eur_customers, 15 rows are returned. After the command executes completely, the user logs out of Databricks.
After logging back in two days later, what is the status of the stakeholders.eur_customers view?

After running SELECT * FROM stakeholders.eur_customers, 15 rows are returned. After the command executes completely, the user logs out of Databricks.
After logging back in two days later, what is the status of the stakeholders.eur_customers view?
- AThe view remains available and SELECT * FROM stakeholders.eur_customers will execute correctly.
- BThe view has been dropped.
- CThe view is not available in the metastore, but the underlying data can be accessed with SELECT * FROM delta. `stakeholders.eur_customers`.
- DThe view remains available but attempting to SELECT from it results in an empty result set because data in views are automatically deleted after logging out.
- EThe view has been converted into a table.
Correct Answer:
B
B
send
light_mode
delete
Question #18
A data analyst created and is the owner of the managed table my_ table. They now want to change ownership of the table to a single other user using Data Explorer.
Which of the following approaches can the analyst use to complete the task?
Which of the following approaches can the analyst use to complete the task?
- AEdit the Owner field in the table page by removing their own account
- BEdit the Owner field in the table page by selecting All Users
- CEdit the Owner field in the table page by selecting the new owner's accountMost Voted
- DEdit the Owner field in the table page by selecting the Admins group
- EEdit the Owner field in the table page by removing all access
Correct Answer:
C
C
send
light_mode
delete
Question #19
A data analyst has a managed table table_name in database database_name. They would now like to remove the table from the database and all of the data files associated with the table. The rest of the tables in the database must continue to exist.
Which of the following commands can the analyst use to complete the task without producing an error?
Which of the following commands can the analyst use to complete the task without producing an error?
- ADROP DATABASE database_name;
- BDROP TABLE database_name.table_name;Most Voted
- CDELETE TABLE database_name.table_name;
- DDELETE TABLE table_name FROM database_name;
- EDROP TABLE table_name FROM database_name;
Correct Answer:
B
B
send
light_mode
delete
Question #20
A data analyst runs the following command:
SELECT age, country -
FROM my_table -
WHERE age >= 75 AND country = 'canada';
Which of the following tables represents the output of the above command?
SELECT age, country -
FROM my_table -
WHERE age >= 75 AND country = 'canada';
Which of the following tables represents the output of the above command?
send
light_mode
delete
All Pages