Questions and Answers

Question lXAaKfD2sYx87MBHTDF0

Question

A data organization leader is upset about the data analysis team’s reports being different from the data engineering team’s reports. The leader believes the siloed nature of their organization’s data engineering and data analysis architectures is to blame. Which of the following describes how a data lakehouse could alleviate this issue?

Choices

  • A: Both teams would autoscale their work as data size evolves
  • B: Both teams would use the same source of truth for their work
  • C: Both teams would reorganize to report to the same department
  • D: Both teams would be able to collaborate on projects in real-time
  • E: Both teams would respond more quickly to ad-hoc requests

Question F7tlPMBJZ6GDtGuOpfb6

Question

A data engineer needs to determine whether to use the built-in Databricks Notebooks versioning or version their project using Databricks Repos. Which of the following is an advantage of using Databricks Repos over the Databricks Notebooks versioning?

Choices

  • A: Databricks Repos automatically saves development progress
  • B: Databricks Repos supports the use of multiple branches
  • C: Databricks Repos allows users to revert to previous versions of a notebook
  • D: Databricks Repos provides the ability to comment on specific changes
  • E: Databricks Repos is wholly housed within the Databricks Lakehouse Platform

Question Nivbbemf6xtNU80QBVKM

Question

A data engineer has been given a new record of data:

id STRING = ‘a1’ rank INTEGER = 6 rating FLOAT = 9.4

Which SQL commands can be used to append the new record to an existing Delta table my_table?

Choices

  • A: INSERT INTO my_table VALUES (‘a1’, 6, 9.4)
  • B: INSERT VALUES (‘a1’, 6, 9.4) INTO my_table
  • C: UPDATE my_table VALUES (‘a1’, 6, 9.4)
  • D: UPDATE VALUES (‘a1’, 6, 9.4) my_table

Question ptrq1JUozHIE9tFNLYdW

Question

A data engineer has realized that the data files associated with a Delta table are incredibly small. They want to compact the small files to form larger files to improve performance.

Which keyword can be used to compact the small files?

Choices

  • A: OPTIMIZE
  • B: VACUUM
  • C: COMPACTION
  • D: REPARTITION

Question RUwDmePtTGCi3d7DRPat

Question

A data engineer wants to create a data entity from a couple of tables. The data entity must be used by other data engineers in other sessions. It also must be saved to a physical location.

Which of the following data entities should the data engineer create?

Choices

  • A: Table
  • B: Function
  • C: View
  • D: Temporary view