Which of the following represents a relative path in Kali Linux?
Note
A relative path in Linux specifies a location relative to the current working directory. Among the options provided: ../Downloads
This represents a relative path because it starts with .., which refers to the parent directory of the current working directory. It specifies that the Downloads directory is located one level up from the current directory.
Here's a breakdown of the options:
- /home/user/Documents: This is an absolute path because it starts from the root directory /.
- ../Downloads: This is a relative path as explained.
- /var/www/html: This is an absolute path starting from the root directory /.
- /etc/apt/sources.list: This is an absolute path starting from the root directory /.