
Ultimate access to all questions.
The security team is evaluating the use of the Databricks secrets module for connecting to an external database.
After testing the code with all Python variables defined as strings, they store the password in the secrets module and configure the appropriate permissions for the active user. They then update their code as follows (keeping all other variables unchanged):
Question:
What will occur when the updated code is executed?
A
The connection to the external table will succeed; the string "REDACTED" will be printed.
B
An interactive input box will appear in the notebook; if the right password is provided, the connection will succeed and the encoded password will be saved to DBFS.
C
An interactive input box will appear in the notebook; if the right password is provided, the connection will succeed and the password will be printed in plain text.
D
The connection to the external table will succeed; the string value of password will be printed in plain text.