The correct answer is A. chmod
448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/> Subscribe on YouTube
The correct answer is A. chmod
448 288 448s170.8 0 213.4-11.5c23.5-6.3 42-24.2 48.3-47.8 11.4-42.9 11.4-132.3 11.4-132.3s0-89.4-11.4-132.3zm-317.5 213.5V175.2l142.7 81.2-142.7 81.2z"/> Subscribe on YouTubeThe chmod command is used to change the permissions of a file. The u, g, and o refer to the user, group, and other permissions, respectively. The + sign means to add the permission, and the x sign means to make the file executable.
So, the command chmod ugo + x report will add the executable permission to the file report for the user, group, and other users.
Option B, chmod u + x report, will add the executable permission to the file report for the user only.
Option C, chmod ugo + rw report, will add the read and write permissions to the file report for the user, group, and other users.
Option D, chmod ugo + r report, will add the read permission to the file report for the user, group, and other users.
Option E is incorrect because it does not include the x sign, which is required to make the file executable.