A script, backup.sh, fails with a "permission denied" error when run by a user. The permissions are rw-r--r--. Which command makes it executable?
Correct Answer: chmod +x backup.sh
Explanation: chmod +x backup.sh adds execute permission for all (owner, group, others), changing rw-r--r-- to rwxr-xr-x, allowing the script to run.
Correct Answer: chmod +x backup.sh
Explanation: chmod +x backup.sh adds execute permission for all (owner, group, others), changing rw-r--r-- to rwxr-xr-x, allowing the script to run.