EX200 • Practice Test 4 — 25 Questions
Free EX200 practice test 4 — 25 questions with explanations. No signup required.
A developer runs the script shown in the exhibit and always sees 'Success' printed, even when the previous command fails. What is the most likely cause?
Refer to the exhibit. ```bash #!/bin/bash # Script to test a condition if [[ $? -eq 0 ]]; then echo 'Success' fi ```