πŸ“Š Operating System Architecture
Q. Which command is used to assign only read permission to all three categories of the file 'note'?
  • (A) chmod go+r note
  • (B) chmod a-rw
  • (C) chmod ugo=r note
  • (D) chmod u+r,g+r,o x note
πŸ’¬ Discuss
βœ… Correct Answer: (C) chmod ugo=r note
πŸ“Š Operating System Architecture
Q. Which command is used to remove the read permission of the file 'note' from both the group and others?
  • (A) chmod go+r note
  • (B) chmod go+rw note
  • (C) chmod go-x note
  • (D) chmod go-r, 4-x note
πŸ’¬ Discuss
βœ… Correct Answer: (D) chmod go-r, 4-x note
πŸ“Š Operating System Architecture
Q. Which command is used to concatenate all files beginning with the string 'emp' and followed by a non-numeric characters?
  • (A) cat emp[!0-9]
  • (B) more [emp][!0-9]
  • (C) cat emp[x-z]
  • (D) cat emp[a-z]
πŸ’¬ Discuss
βœ… Correct Answer: (A) cat emp[!0-9]
πŸ“Š Operating System Architecture
Q. /bin/passwork has the user execution permission set to 's' because
  • (A) this facility assigns to the user, permissions of the program owner temporarily
  • (B) it should allow users who don\t have write permission to /etc/passwd to write to it
  • (C) /etc/passwd is write protected
  • (D) all of these
πŸ’¬ Discuss
βœ… Correct Answer: (D) all of these

Jump to