Bird
0
0

You want to move to a folder named 'projects' inside the current directory, but typing 'cd projects' gives an error. What should you try next?

hard📝 Application Q9 of 15
Linux CLI - Navigating the File System
You want to move to a folder named 'projects' inside the current directory, but typing 'cd projects' gives an error. What should you try next?
Acd ./projects
Bcd /projects
Ccd ~projects
Dcd ..projects
Step-by-Step Solution
Solution:
  1. Step 1: Understand relative path usage

    "./projects" explicitly means 'projects' folder inside current directory.
  2. Step 2: Check other options

    /projects is root folder, ~projects is invalid, ..projects is invalid syntax.
  3. Final Answer:

    cd ./projects -> Option A
  4. Quick Check:

    Use ./ to specify current directory explicitly [OK]
Quick Trick: Use ./ to specify current folder explicitly [OK]
Common Mistakes:
  • Using absolute path when folder is relative
  • Typing invalid path prefixes

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Linux CLI Quizzes