
Ultimate access to all questions.
A data engineer scheduled a daily job at 2 PM that uses a legacy shell script to copy a file from /tmp to /FileStore. Despite the /tmp directory being unavailable for a week, the job did not fail. What could explain this behavior?
A
The cp command lacks the -e option, which should be cp /tmp/raw_data.csv /FileStore/data.csv -e_
B
The cp command lacks the -error option, which should be cp /tmp/raw_data.csv /FileStore/data.csv -error_
C
The %sh magic command lacks the -e option, which should be %sh -e
D
The %sh magic command lacks the -error option, which should be %sh -error
E
Both the %sh magic command lacks the -error option and the cp command lacks the -e option