Moderate

Which of the following commands is used to assign executable permission to the owner of the file named "note" ?

Correct answer: C. chmod u+x note

  • A. chmod g+x note
  • B. chmod u+w note
  • C. chmod u+x note
  • D. chmod ugo+x note

Explanation

The `u` permission class means the file owner, and `+x` adds execute permission, so `chmod u+x note` targets exactly the owner. `g` targets the group, while `ugo` targets all three classes.

Last updated

Practise Software Design and Architecture

493 free Software Design and Architecture 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