Databricks-Certified-Data-Engineer-Associate Exam Question 31

A data engineer wants to create a new table containing the names of customers who live in France.
They have written the following command:
CREATE TABLE customersInFrance
_____ AS
SELECT id,
firstName,
lastName
FROM customerLocations
WHERE country = 'FRANCE';
A senior data engineer mentions that it is organization policy to include a table property indicating that the new table includes personally identifiable information (Pll).
Which line of code fills in the above blank to successfully complete the task?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 32

    A data engineer needs to combine sales data from an on-premises PostgreSQL database with customer data in Azure Synapse for a comprehensive report. The goal is to avoid data duplication and ensure up-to-date information How should the data engineer achieve this using Databricks?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 33

    A data engineer needs to conduct Exploratory Analysis on data residing in a database that is within the company's custom-defined network in the cloud. The data engineer is using SQL for this task.
    Which type of SQL Warehouse will enable the data engineer to process large numbers of queries quickly and cost-effectively?
  • Databricks-Certified-Data-Engineer-Associate Exam Question 34

    Identify how the count_if function and the count where x is null can be used Consider a table random_values with below data.
    What would be the output of below query?
    select count_if(col > 1) as count_a. count(*) as count_b.count(col1) as count_c from random_values col1
    0
    1
    2
    NULL -
    2
    3
  • Databricks-Certified-Data-Engineer-Associate Exam Question 35

    Which of the following is hosted completely in the control plane of the classic Databricks architecture?