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 in octal means: Owner (7) = read(4)+write(2)+execute(1), Group (6) = read(4)+write(2), Others (4) = read(4). So everyone can read, owner has full access, and group can read/write. Option C correctly states: everyone can read, group including owner can write, owner alone can execute.