Which command is used to display the final 10 lines of a file?
Explanation
The 'tail' command outputs the last part of a file, by default showing the final 10 lines. 'head' shows the beginning of a file, 'grep' searches for patterns, and 'cat' concatenates and displays file contents.