Moderate

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

Correct answer: C. chmod ugo=r note

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

Explanation

`chmod ugo=r note` assigns read permission to the user, group, and others while removing write and execute permissions. The `ugo` notation explicitly covers all three permission categories.

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