Multiple choice technology architecture

ls –lqr

  1. Lists the file or directory contents that the link references

  2. Lists the name in each slot for each directory specified in the Directory parameter.

  3. Displays nonprintable characters in file names as a ? (question mark) and Reverses the order of the sort.

  4. Lists all subdirectories recursively.

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

ls -lqr combines flags: -l (long format), -q (show non-printable characters as ?), and -r (reverse order). When combined, it displays detailed listings with non-printable characters replaced by ? and reverses the sort order (typically smallest files first when sorted by size).