Multiple choice technology operating systems

The user's current path is /root/Desktop/abc. If he runs $ cd ../../../ what will be the user's HIS current path?

  1. /

  2. /root/

  3. /root/Desktop

  4. /root/Desktop/abc

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

Starting from /root/Desktop/abc, going up one directory (../) reaches /root/Desktop, going up again (../../) reaches /root, and going up a third time (../../../) reaches the root directory (/). You cannot go above the root.