Bird
0
0

Why does the permission notation rw-rw-rw- correspond to the numeric value 666?

hard📝 Conceptual Q10 of 15
Linux CLI - File Permissions and Ownership
Why does the permission notation rw-rw-rw- correspond to the numeric value 666?
ABecause execute permission is counted as 6
BBecause read and write permissions equal 6 for each user class
CBecause 6 means full permissions
DBecause write permission alone equals 6
Step-by-Step Solution
Solution:
  1. Step 1: Understand permission values

    Read = 4, Write = 2, Execute = 1.
  2. Step 2: Calculate read and write sum

    Read(4) + Write(2) = 6.
  3. Step 3: Apply to all user classes

    Owner, group, and others all have 'rw-' which equals 6 each.
  4. Final Answer:

    Because read and write permissions equal 6 for each user class -> Option B
  5. Quick Check:

    rw- = 6, repeated thrice = 666 [OK]
Quick Trick: Read(4) + Write(2) = 6, no execute [OK]
Common Mistakes:
MISTAKES
  • Thinking execute counts as 6
  • Confusing write with execute values

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes