Multiple choice technology operating systems Display only files with ".zip" extension from the current directory ls -ltr *.zip ls -ltr | grep "zip$" 1 and 2 None Reveal answer Fill a bubble to check yourself C Correct answer Explanation ls -ltr *.zip directly lists files ending in .zip. ls -ltr | grep "zip$" lists all files, then filters for lines ending in 'zip'. Both achieve the same result for .zip files - the shell glob matches the pattern, and the regex anchors to the end.