FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

RASPBERRY PI PROJECT IDEAS

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which command takes you up (back) one directory?
A
cd ..
B
cd ../..
C
cd
D
cd  
Explanation: 

Detailed explanation-1: -To go up one level of the directory tree, type the following: cd .. The special file name, dot dot ( .. ), refers to the directory immediately above the current directory, its parent directory.

Detailed explanation-2: -To navigate to your home directory, use “cd” or “cd  ” To navigate up one directory level, use “cd ..” To navigate to the previous directory (or back), use “cd-"

Detailed explanation-3: -Use the Back button to backtrack. The cd (change directory) command moves you into a different directory. To move out of that directory, use cd along with the path to some other location, or use double dots to backtrack, or return home to navigate from there. Navigating a Linux computer is like navigating the internet.

Detailed explanation-4: -The cd command, also known as chdir (change directory), is a command-line shell command used to change the current working directory in various operating systems.

There is 1 question to complete.