How do you move up level folder level?
B
Correct answer
Explanation
The 'cd ..' command moves up one directory level in the filesystem hierarchy. 'cd .' refers to the current directory, 'cd ~' goes to the home directory, and 'cd' alone also goes to the home directory. The double dot (..) is the standard parent directory reference in Unix/Linux.