Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
When executing the following code block in a notebook: db_password = dbutils.secrets.get(scope="dev", key="database_password") print(db_password), what will be the outcome?
db_password = dbutils.secrets.get(scope="dev", key="database_password") print(db_password)
A
An interactive input box will appear in the notebook
B
The string "REDACTED" will be printed.
C
The error message "Secrets can not be printed" will be shown
D
The string value of the password will be printed in plain text.
E
If the user has "Can Read" permission, the string value of the password will be printed in plain text. Otherwise, the string "REDACTED" will be printed.