Multiple choice technology operating systems

Which command will create a soft link to a file?

  1. ls -n

  2. ln

  3. ln -s

  4. link -s

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

The ln -s command creates symbolic (soft) links in Unix/Linux systems. The -s flag specifies a symbolic link rather than a hard link. Option A is the wrong command, option B creates hard links by default, and option D is not a valid command.