Multiple choice technology operating systems

What is the command to list file inode numbers along with longlisting.

  1. ls -ll

  2. ll

  3. ls -li

  4. ls --inode --long

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

In Unix/Linux, combining the -i option (which prints the index number or inode of each file) with the -l option (which prints the long listing format) results in the command ls -li. Other options like ls -ll or ll do not print the inode numbers.