Which of the following correctly describes the meaning of the file permission rwxr-x--x?
Remember that 'r' means read, 'w' means write, and 'x' means execute. The order is owner, group, others.
The permission string rwxr-x--x means the owner has read, write, and execute permissions; the group has read and execute permissions but no write; others have execute permission only.
What happens when you perform the append operation on a file?
Think about what 'append' means in everyday writing or note-taking.
Appending means adding new data after the existing content without deleting it.
If a file's read-only attribute is set, which of the following operations will fail?
Consider what 'read-only' means for file access.
A read-only attribute prevents changes to the file content but does not stop reading or copying. Deleting may be prevented depending on the file system and permissions.
Which statement correctly compares the write (w) and append (a) modes when opening a file?
Think about what happens to the existing file content in each mode.
Write mode clears the file before writing new data; append mode keeps existing data and adds new data at the end.
Consider a file system where a file's hidden attribute is toggled on. Which of the following best describes the immediate effect on the file's visibility and accessibility?
Think about how hidden files behave in common operating systems like Windows or Linux.
Setting the hidden attribute usually hides the file from normal views but does not prevent access if the exact path is used.