Which of the following commands is equivalent to chmod 761 note?
Explanation
The command chmod 761 sets permissions as follows: user (u) has read, write, and execute (7); group (g) has read and write (6); others (o) have execute only (1). This is exactly what 'chmod u=rwx, g=rw, o=x note' specifies, making option B the correct equivalent command.