Bird
0
0

What is the numeric (octal) permission equivalent of rwxr-x---?

medium📝 Command Output Q4 of 15
Linux CLI - File Permissions and Ownership
What is the numeric (octal) permission equivalent of rwxr-x---?
A740
B751
C750
D755
Step-by-Step Solution
Solution:
  1. Step 1: Convert owner permissions 'rwx' to octal

    'rwx' means read(4) + write(2) + execute(1) = 7.
  2. Step 2: Convert group permissions 'r-x' to octal

    'r-x' means read(4) + execute(1) = 5.
  3. Step 3: Convert others permissions '---' to octal

    No permissions = 0.
  4. Final Answer:

    750 -> Option C
  5. Quick Check:

    rwx = 7, r-x = 5, --- = 0 [OK]
Quick Trick: Add 4+2+1 for each permission set [OK]
Common Mistakes:
  • Mixing up execute and write values
  • Forgetting to add values correctly

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes