Moderate

Which command is used to change protection mode of files starting with the string emp and ending with 1,2, or 3 ?

Correct answer: A. chmod u+x emp[1-3]

  • A. chmod u+x emp[1-3]
  • B. chmod 777 emp*
  • C. chmod u+r ??? emp
  • D. chmod 222 emp?

Explanation

The pattern `emp[1-3]` matches names beginning with `emp` and ending in 1, 2, or 3, while `chmod u+x` changes the owner's execute permission. The other patterns either match the wrong filenames or change different permissions.

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