Bird
Raised Fist0

Which sequence of commands achieves this?

hard🚀 Application Q8 of Q15
Intro to Computing - How Files and Folders Organize Data
You have a folder with files: file1.txt, file2.txt, and file3.txt. You want to move all files starting with 'file' to a new folder Archive but keep a copy of file2.txt in the original folder. Which sequence of commands achieves this?
Acopy file1.txt Archive/ copy file2.txt Archive/ copy file3.txt Archive/
Bmove file1.txt Archive/ copy file2.txt Archive/ move file3.txt Archive/
Cmove file1.txt Archive/ move file2.txt Archive/ move file3.txt Archive/
Dcopy file1.txt Archive/ move file2.txt Archive/ copy file3.txt Archive/
Step-by-Step Solution
Solution:
  1. Step 1: Move file1.txt and file3.txt

    Use move command to transfer these files to Archive, removing them from original folder.
  2. Step 2: Copy file2.txt

    Copy file2.txt to Archive to keep original in place and have a copy in Archive.
  3. Final Answer:

    move file1.txt Archive/ copy file2.txt Archive/ move file3.txt Archive/ -> Option B
  4. Quick Check:

    Move files except copy file2.txt to keep original [OK]
Quick Trick: Move files to transfer; copy to keep original [OK]
Common Mistakes:
MISTAKES
  • Moving file2.txt instead of copying
  • Copying all files instead of moving some
  • Mixing up move and copy commands

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Intro to Computing Quizzes