Linux File Permissions quiz challenge | Linux File Permissions interview Questions and Answers multi choice
🔒 Linux File Permissions Challenge
Master the basics of `chmod` and `chown`. **Pass with 80% to proceed to the next difficulty level.**
Octal Basics: 0/10 (0%)
Symbolic & SUID: 0/10 (0%)
Chown & Advanced: 0/10 (0%)
Level 1: Octal Notation Fundamentals
1.1 What octal value represents the **Read** permission only?
**Correct Answer: B. 4**. Read (r) is 4, Write (w) is 2, Execute (x) is 1.
**End of Octal Basics. Click "Next Level" to continue.**
Level 2: Symbolic Notation and Special Bits
2.1 What does the command `chmod u+x file.txt` do?
**Correct Answer: C.** `u` (user/owner), `+` (add permission), `x` (execute).
**End of Symbolic Level. Click "Next Level" to continue.**
Level 3: Ownership and Advanced Concepts
3.1 Which command is used to change the **owner** of a file?
**Correct Answer: B. `chown`** (Change Owner).
**Permissions Mastered! Click "Finish Quiz" to see your final summary.**
Comments
Post a Comment