Multiple choice technology operating systems How can you display list of all files, including the hidden files? find -a ls -a find all ls -l Reveal answer Fill a bubble to check yourself B Correct answer Explanation The 'ls -a' command lists all files in a directory, including hidden files (those starting with a dot), whereas 'ls -l' shows detailed information but excludes hidden files by default.