Which command displays files sorted according to their modification timestamps?
Explanation
The 'ls -t' command lists files ordered by their last modification time, showing the most recently modified files first. Other options serve different purposes: 'ls -1' lists files line by line, 'ls -i' displays inode numbers, 'ls -R' lists contents recursively, and 'ls -a' includes hidden files.