Which two commands can be used to view the SELinux context of files or processes?
ps auxZ displays the SELinux context of processes.
Why this answer
`ps auxZ` displays the SELinux context for each running process, showing the user, role, type, and sensitivity level associated with the process. Option E is correct because `ls -Z` shows the SELinux context of files and directories, including the security label that defines access controls. Both commands are standard Linux utilities that expose the SELinux security context attribute.
Exam trap
The trap here is that candidates may confuse commands that change SELinux contexts or modes (chcon, setenforce) with those that display contexts, or they may think `getenforce` shows context details when it only shows the enforcement state.