what is the octal notation for the symbolic expression o+rw?
C
Correct answer
Explanation
The symbolic mode o+rw adds read (4) and write (2) permissions for others, so others get 4+2=6. Keeping default user (rw=6) and group (r=4) permissions unchanged gives 646. Option A (464) gives user read-only, Option B (644) gives others read-only, and Option D (462) gives group write permission incorrectly.