Moderate

Which command is used to make all files and sub-directories in the directory (progs) executable by all users ?

Correct answer: A. chmod -R a+x progs

  • A. chmod -R a+x progs
  • B. chmod -R 222 progs
  • C. chmod -1 a+x progs
  • D. chmod -x a+x progs

Explanation

The `-R` option applies the change recursively, while `a+x` adds execute permission for the owner, group, and others. The other numeric mode shown does not specifically assign executable permission.

Last updated

Practise Software Development Lifecycle

423 free Software Development Lifecycle MCQs from Software Engineering, each with the correct answer and an explanation. Unlimited attempts, no account needed.

Exams that ask Software Engineering questions like this

Software Engineering is on this paper prepared for on TestUstad, and all of them draw the same bank, so this question is worth knowing for it.

Related questions