A systems administrator is developing a script to copy a file if it exists and return an error if it does not. Given the following incomplete script: Which of the following statements is missing from the script?
Correct Answer: B
An else statement is required to handle the condition when the file does not exist so the script can return the error message instead of attempting the copy operation.