You need to prevent a standard user from accidentally deleting a critical configuration file owned by root. Which command ensures the file cannot be modified or deleted even by the root user?
This sets the immutable flag, preventing all modifications.
Why this answer
The chattr +i command sets the immutable attribute, which prevents any user, including root, from deleting, renaming, or modifying the file until the attribute is removed.