A system administrator is working with compressed files. Which THREE commands can be used to view their contents? (Select THREE).
zgrep searches patterns in compressed files; not for process monitoring.
Why this answer
The commands zgrep, zcat, and zless are used to search, concatenate, and view compressed files respectively. They are analogous to grep, cat, and less but work on compressed files. The other options, cat and less, do not handle compressed files directly.