11.4.2 Review
Quiz by Kwok Louie
Feel free to use or edit a copy
includes Teacher and Student dashboards
Measure skillsfrom any curriculum
Measure skills
from any curriculum
Tag the questions with any skills you have. Your dashboard will track each student's mastery of each skill.
With a free account, teachers can
- edit the questions
- save a copy for later
- start a class game
- automatically assign follow-up activities based on students’ scores
- assign as homework
- share a link with colleagues
- print as a bubble sheet
15 questions
Show answers
- Q1Which wildcard symbol is used in command prompt to represent one or more characters?#?^*30s
- Q2Which wildcard character is used in command prompt to represent a single character in file names?% (percent)# (hash)* (asterisk)? (question mark)30s
- Q3Which command would you use to list all text files in a directory using wildcards in the command prompt?dir *.txtshow *.*list *.txtget *.text30s
- Q4What command would you use to change the current directory to a subfolder named 'Documents' in Command Prompt?change Documentsset Documentscd Documentsnavigate Documents30s
- Q5What command would you use to copy a file named 'example.txt' from the current directory to a folder named 'Backup'?move example.txt Backupcp example.txt Backupcopy example.txt Backupduplicate example.txt Backup30s
- Q6To rename a file called 'oldfile.txt' to 'newfile.txt' in Command Prompt, which command should you use?rename oldfile.txt newfile.txtchange oldfile.txt newfile.txtmv oldfile.txt newfile.txtren oldfile.txt newfile.txt30s
- Q7What command would you use to create a new folder in the current directory using Command Prompt?createfoldernewfoldermkdiraddfolder30s
- Q8What is the command used in a command line interface to change to the parent directory?cd /cd ..cd .cd ~30s
- Q9If you want to change to a directory named 'Projects' that is a subdirectory of your current location, which command would you use?cd /Projectscd Projectscd ..Projectscd .Projects30s
- Q10What is the purpose of the 'md' command in a command line interface?To delete a directoryTo create a new directoryTo move files between directoriesTo list files in a directory30s
- Q11Which of the following can be used to create a nested directory structure in one command using 'md'?md Parent_Ch@ld_Grandchildmd Parent-Child-Grandchildmd Parent\Child\Grandchildmd Parent/Child/Grandchild30s
- Q12What is the function of the rd command in a command-line interface?To create a directoryTo copy files between directoriesTo remove a directoryTo list files in a directory30s
- Q13Which of the following options is a valid way to use the copy command in Windows Command Prompt?copy file1 file2copy file1.txt file2.txtcp file1.txt file2.txtmv file1.txt file2.txt30s
- Q14Which command is specifically designed for more advanced file copying in Windows, compared to the more basic Xcopy?RobocopyCopyMoveXcopy30s
- Q15What is the correct syntax to use the type command to display a file named 'example.txt'?display example.txtshow example.txttype example.txtcat example.txt30s