Multiple choice technology programming languages

what is the command to list inode number along its file long listing?

  1. ls -n

  2. ll -d

  3. ls -il

  4. lsi

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

The ls -il command displays the inode number in the first column along with the detailed long listing format. The -i flag specifically includes the inode number, and -l provides the long listing format. The -n flag shows UID/GID numerically, ll is an alias not a standard command, and lsi is not a valid ls command.