Which command modifies the permissions of files that begin with 'emp' and end with either 1, 2, or 3?
Explanation
Option A is correct because 'chmod u+x emp[1-3]' changes the user execute permission for files named 'emp1', 'emp2', or 'emp3'. Other options either apply to incorrect file patterns or set inappropriate permissions.