Command line basics. cd.
  • 1. A directory is equivalent to a
A) File
B) Word Document
C) Folder
D) File System
E) Any document
  • 2. A path is a chain of ______
A) Documents
B) Files
C) Teddy Bears
D) Directories
E) Hard Drives
  • 3. Your home directory is
A) A special system directory that stores my passwords
B) The default directory to store your files
C) A default path that looks like a house
D) The default directory where programs are
E) Your home address
  • 4. the path / stands for
A) up one level
B) the current directory
C) down one level
D) empty path
E) Root directory
  • 5. the path ~ stands for
A) up one level
B) empty path
C) down one level
D) Root directory
E) Home directory
  • 6. if pwd outputs /User/james/test/" you are in what directory?
A) james under root under test
B) Test under james
C) test under james under User
D) test under root
E) User under james under test
  • 7. if pwd outputs /User/jane/programs/output then cd .. will take you to
A) /User/
B) /User/jane/
C) /User/jane/programs/data
D) programs/
E) /User/jane/programs/
  • 8. if pwd outputs /myfiles/modeling/airplanes/biplanes/ then assuming cd ../../data/ succeeds, pwd would now output:
A) /myfiles/modeling/airplanes/biplanes/../
B) /myfiles/modeling/
C) /myfiles/modeling/data
D) /myfiles/data/
E) /myfiles/modeling/airplanes/biplanes/data
  • 9. if pwd outputs "/Dog/Cat/mouse/" what commands should be used to list all the files in Dog/Cat/mouse/flea/?
A) ls
B) cd flea
C) pwd flea
D) ls -l
E) cd flea; ls
  • 10. if pwd outputs "/Dog/Cat/mouse/" what command(s) should be used to list all the files in Dog/Cat/mouse/flea/?
A) ls flea/
B) ls -l
C) pwd flea/ ; ls
D) cd mouse/flea; ls
E) list files flea
  • 11. if pwd outputs "/Dog/Cat/mouse/" and you type ls you will see:
A) a commercial for buger king
B) all the files in the "flea" directory
C) the path to the mouse directory
D) all the files in Dog, Cat and mouse directories
E) all the files in the "mouse" directory
  • 12. if pwd outputs /Dog/Cat/mouse/ and then you issue a cd ~ how do you get back to the original directory?
A) cd dog/cat/mouse
B) cd /dog/cat/mouse
C) cd orig-dir
D) cd /Dog/Cat/mouse
E) cd ~/Dog/Cat/mouse
  • 13. let's say pwd outputs /Users/john/ Now, you have a file /dog/cat/mouse.dat and want to copy it to /dog/cat/rat.dat what command would you issue?
A) cp /Users/john/mouse.dat rat.dat
B) cp /dog/cat/mouse.dat rat.dat
C) cp /dog/cat/mouse.dat /dog/cat/rat.dat
D) mv /dog/cat/mouse.dat rat.dat
E) mv /dog/cat/mouse.dat /dog/cat/rat.dat
  • 14. let's say pwd outputs /dog/cat/ Now, you have a file /dog/cat/mouse.dat and want to copy it to /dog/cat/rat.dat what command would you issue?
A) cp /dog/cat/mouse /dog/cat/rat
B) cp mouse.dat rat.dat
C) mv /dog/cat/mouse.dat /dog/cat/rat.txt
D) mv mouse.dat rat.dat
E) mv cp ls pwd
  • 15. let's say pwd outputs /dog/cat/ Now, you have a file /dog/cat/mouse.dat and want to copy it to /dog/cat/rat.dat what command would you issue?
A) cp /dog/cat/mouse.dat /dog/cat/rat.dat
B) cp /dog/cat/mouse /dog/cat/rat
C) mv mouse.dat rat.dat
D) mv /dog/cat/mouse.dat /dog/cat/rat
E) cp /dog/cat/mouse.dat rat
  • 16. let's say pwd outputs /dog/cat/ Now, you have a file /dog/cat/mouse.dat and want to move it to /dog/cat/rat.dat what command is equivalent to mv mouse.dat rat.dat
A) mv /dog/cat/rat.dat mouse.dat
B) mv /dog/cat/mouse.dat rat.dat
C) mv mouse.dat rat
D) find -space -time -travel
E) cp mouse.dat rat.dat
  • 17. let's say pwd outputs /dog/cat/ Now, you have a file /dog/cat/mouse.dat and want to move it to /dog/cat/rat.dat what command is NOT equivalent to mv mouse.dat rat.dat
A) mv mouse.dat /dog/cat/rat.dat
B) mv ../cat/mouse.dat rat.dat
C) mv /dog/cat/mouse.dat /dog/rat.dat
D) mv mouse.dat ../cat/rat.dat
E) mv /dog/cat/mouse.dat rat.dat
  • 18. let's say pwd outputs /dog/cat/ Now, you have a file /dog/cat/mouse.dat. You type cp mouse.dat rat.dat; cp rat.dat ../mice.dat then:
A) /dog/cat has three files
B) /dog/cat/mouse.dat has a file called rat.dat
C) /dog/cat has two files, /dog has one file
D) /dog/ has three files, /dog/cat/ has two.
E) /dog/cat has a file named mouse.dat
  • 19. let's say pwd outputs /p/g/ Now, you have a file /p/g/out.dat. You type cp out.dat rat.dat; cp rat.dat ../mice.dat; cd ..; mv g/out.dat ." what would ls produce?
A) out with mice and rats!
B) out.dat rat.dat mice.dat
C) p g mice.dat out.dat
D) mice.dat
E) mice.dat out.dat
Created with That Quiz — a math test site for students of all grade levels.