Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam Certified Data Engineer Associate All Questions

View all questions & answers for the Certified Data Engineer Associate exam

Exam Certified Data Engineer Associate topic 1 question 20 discussion

Actual exam question from Databricks's Certified Data Engineer Associate
Question #: 20
Topic #: 1
[All Certified Data Engineer Associate Questions]

A data engineer needs to create a table in Databricks using data from their organization’s existing SQLite database.
They run the following command:

Which of the following lines of code fills in the above blank to successfully complete the task?

  • A. org.apache.spark.sql.jdbc
  • B. autoloader
  • C. DELTA
  • D. sqlite
  • E. org.apache.spark.sql.sqlite
Show Suggested Answer Hide Answer
Suggested Answer: A 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
rafahb
Highly Voted 1 year, 7 months ago
A is correct
upvoted 8 times
...
7082935
Most Recent 2 months, 4 weeks ago
Selected Answer: A
Nobody mentioned this, but the big hint in this question is the url, which has a "jdbc:" url prefix. Hence, a JDBC type driver is required here.
upvoted 2 times
...
ranjan24
4 months, 1 week ago
A is correct
upvoted 1 times
...
benni_ale
7 months ago
Selected Answer: A
A is correct
upvoted 1 times
...
SerGrey
10 months, 3 weeks ago
Correct answer is A
upvoted 1 times
...
Huroye
1 year ago
I think the correct answer is A. All that is missing the the jdbc drive. org.apache.spark.sql.jdbc
upvoted 2 times
...
chris_mach
1 year, 1 month ago
Selected Answer: A
A is correct
upvoted 1 times
...
KalavathiP
1 year, 2 months ago
Selected Answer: A
A is correct
upvoted 1 times
...
juliom6
1 year, 5 months ago
Selected Answer: A
must be "USING JDBC", there is no such thing as "USING org.apache.spark.sql.jdbc". https://docs.databricks.com/external-data/jdbc.html#language-sql
upvoted 1 times
juliom6
1 year, 5 months ago
I correct myself https://docs.yugabyte.com/preview/integrations/apache-spark/spark-sql/
upvoted 4 times
...
...
Majjjj
1 year, 6 months ago
Selected Answer: A
To specify the JDBC driver and other options, the using clause should be followed by the fully qualified name of the JDBC data source, which is org.apache.spark.sql.jdbc.
upvoted 2 times
...
Varma_Saraswathula
1 year, 7 months ago
Answer A - CREATE TABLE new_employees_table USING JDBC OPTIONS ( url "<jdbc_url>", dbtable "<table_name>", user '<username>', password '<password>' ) AS SELECT * FROM employees_table_vw
upvoted 1 times
...
naxacod574
1 year, 7 months ago
JDBC - Option A
upvoted 1 times
...
XiltroX
1 year, 7 months ago
Selected Answer: A
Option A is correct answer
upvoted 2 times
...
sdas1
1 year, 7 months ago
option A
upvoted 2 times
...
surrabhi_4
1 year, 7 months ago
Selected Answer: A
option A
upvoted 1 times
...
knivesz
1 year, 7 months ago
Selected Answer: A
Es JDBC osea la A, pregunta con truco para confundir
upvoted 1 times
...
knivesz
1 year, 7 months ago
es JDBC
upvoted 3 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...