Moderate

What command is used to assign only read permission to all three categories of the file'letter' ?

Correct answer: B. chmod ugo = r letter

  • A. chmod u + r, g + r, o - x letter
  • B. chmod ugo = r letter
  • C. chmod a - rw letter
  • D. chmod go + r letter

Explanation

`ugo` refers to user, group, and others, and `=r` assigns read permission while removing other permissions. Hence, `chmod ugo = r letter` expresses read-only access for all three categories, ignoring the spacing shown in the option.

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