Which command sets full permissions for the owner, read and write access for the group, and execute-only rights for others on the file named 'note'?

Choose the correct answer

Explanation

The command 'chmod 761 note' assigns permissions as follows: the owner receives all permissions (7 = read, write, execute), the group gets read and write permissions (6 = read, write), and others have execute-only permission (1 = execute). The other options do not match this exact permission set.

Which command sets full permissions for the owner, r… — Basic of linux unix | PakQuizHub