Q. If you are a root user, how can you enable execution only for the owner of the file “myfile”?
β
Correct Answer: (B)
$ chmod u+x myfile
Explanation: u+x grants the execution right to the file owner.