Multiple choice technology programming languages

For some file the access permissions are modified to 764. Which of the following

  1. Every one can read, group can execute only and the owner can read and write

  2. Every one can read and write, but owner alone can execute

  3. Every one can read, group including owner can write, owner alone can execute

  4. None

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Permission 764 means: owner has 7 (rwx=read+write+execute), group has 6 (rw=read+write), others have 4 (r=read only). So everyone can read, group+owner can write, and only owner can execute.