TestOut LabSim
TestOut LabSim
TestOut LabSim
Overall Performance
Your Score: 0%
Individual Responses
Question 1: Incorrect
Which of the following file extension types can be run from the command prompt? (Select three.)
.bat
.dll
.sys
.exe
.com
Explanation
.exe, .bat, and .com files can all be run stand-alone from the command prompt, while .dll and
.sys files work in conjunction with other programs.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_01]
Question 2: Incorrect
Which commands can you use to create a new directory? (Select two.)
md
rd
newdir
cd
mkdir
Explanation
Use md or mkdir to create a directory. Use cd to show the current directory. Use rd to delete a
directory.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_03]
Question 3: Incorrect
Which command would you use to copy all files and subdirectories in a directory, including empty
subdirectories?
copy /n
xcopy /s
copy /v
xcopy /e
Explanation
Use xcopy /e to copy directories and subdirectories, including empty ones.
https://cdn.testout.com/client-v5-1-10-508/startlabsim.html 1/5
4/28/2018 TestOut LabSim
xcopy /s copies directories and subdirectories, but not empty ones. Use copy /n to copy a single
directory with the short filenames. Use copy /v to verify the files after the copy.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_04]
Question 4: Incorrect
Which command lets you delete subdirectories in addition to files in the current directory?
rd /a
rd /f
rd /s
rd /q
Explanation
Use rd /s to remove subdirectories in addition to files in the current directory.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_05]
Question 5: Incorrect
Which command would you use to change the current directory to the immediate parent
directory?
pdir
cd ..
dir
cd
Explanation
Use cd .. to change the current directory to the immediate parent directory. The cd command by
itself shows the current directory. Use dir to display a list of files and subdirectories in a directory.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_06]
Question 6: Incorrect
Which option used with the copy command makes sure that all copied files are written correctly
after they have been copied?
/v
/a
/n
/y
Explanation
The copy /v command verifies files after they are copied. copy /a specifies that the file is an ASCII
text file. The copy /n command copies files using short filenames. The copy /y command will not
prompt you before each overwrite operation.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_08]
Question 7: Incorrect
You need to copy several hundred files from one directory to another. Most of the files exist in
the target directory, but you want to overwrite the existing files with the ones you will copy. You
want the file copy to proceed automatically without prompting you to overwrite existing files.
https://cdn.testout.com/client-v5-1-10-508/startlabsim.html 2/5
4/28/2018 TestOut LabSim
/o
/y
/v
/a
Explanation
The copy /y command will not prompt you before each overwrite operation. The copy /v
command verifies files after they are copied. The copy /a command specifies that the file is an
ASCII text file.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_09]
Question 8: Incorrect
You are working at the command line and want to add the Read-only attribute to a file and
remove the Hidden attribute. Which command would you use?
attrib +r -h
attrib +ro -h
Explanation
Use attrib +r -h to add the Read-only attribute and remove the Hidden attribute.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_11]
Question 9: Incorrect
Which of the following extensions identifies a program packaged for use by Windows Installer?
.dll
.msi
.exe
.bat
.pkg
Explanation
The .msi extension identifies installation packages formatted for use by the Windows Installer.
The .exe extension indicates a program file. The extension .bat indicates a batch file. The
extension .dll indicates a dynamic link library system file.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_12]
Question 10: Incorrect
Which file attribute identifies the file as having been modified since the last backup?
Archive
Read only
Hidden
Encrypted
Explanation
The Archive (A) attribute identifies if a file has been modified since the last backup. A file attribute
is metadata that gives certain qualities to a file after the attribute has been assigned. The Read
https://cdn.testout.com/client-v5-1-10-508/startlabsim.html 3/5
4/28/2018 TestOut LabSim
only (R) attribute marks a file as read-only meaning that the file cannot be altered by subsequent
users. The encrypted attribute encrypts a file. The Hidden (H) attribute hides a file within the file
system so it cannot be viewed or accessed by users that do not have access to its specific
filename.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_14]
Question 11: Incorrect
You have a file which you would like other users to see, but not modify. Which file attribute
should you use?
Explanation
The Read only (R) attribute marks a file as read-only meaning that the file cannot be altered by
subsequent users. A file attribute is metadata that gives certain qualities to a file after the
attribute has been assigned. The Archive (A) attribute identifies if a file has been modified since
the last backup. The System (S) attribute identifies a file as a system file that cannot be deleted.
The Hidden (H) attribute hides a file within the file system so it cannot be viewed or accessed by
users that do not have access to its specific filename.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_15]
Question 12: Incorrect
Which of the following file extensions indicates a Windows system file? (Select two.)
.msi
.com
.dll
.vxd
.rtf
Explanation
Windows system file extensions include .dll (dynamic link library), .drv (device driver), and .vxd
(virtual device driver).
Program file extensions include .exe and .com. Document file extensions include .rtf (rich text).
Windows installer files use the .msi extension.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_16]
Question 13: Incorrect
Adds the System file attribute, adds the Read-only attribute, and removes the Archive
attribute to the file myfile.dll.
Adds the System file attribute, removes the Read-only attribute, and removes the
Archive attribute to the file myfile.dll.
Adds the System file attribute, adds the Write-only attribute, and removes the Archive
attribute to the file myfile.dll.
Removes the System file attribute, removes the Read-only attribute, and adds the
Archive attribute to the file myfile.dll.
Explanation
The attrib +s +r -a myfile.dll command adds the System file attribute, adds the Read-only
https://cdn.testout.com/client-v5-1-10-508/startlabsim.html 4/5
4/28/2018 TestOut LabSim
attribute, and removes the Archive attribute to the file myfile.dll.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_19]
Question 14: Incorrect
ls
dir
attrib
cd
list
md
Explanation
Use the dir command to display a list of files and subdirectories in a directory.
You use the cd command to work with the current directory. You use the md (and mkdir)
command to create a directory. You use the attrib command to change or view the attributes of
one or more files. The ls command is used on Linux systems. List is not a command line
command.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_20]
Question 15: Incorrect
Which command is used to copy entire folder structures between volumes or across a network
while maintaining all NTFS file permissions and attributes?
xcopy
copy /robust
copy
robocopy
Explanation
The robocopy command (short for Robust File Copy) is used to copy entire folder structures
between volumes or across a network. The benefit of using robocopy is that all NTFS file
permissions and attributes are maintained and interrupted transfers can be resumed.
The copy command will just copy files from one location to another. The xcopy command will
copy files and directory trees but will not maintain all NTFS file permissions and attributes.
References
LabSim for PC Pro, Section 11.2.
[pcpro2016_all_questions_en.exm FILEMAN_21]
https://cdn.testout.com/client-v5-1-10-508/startlabsim.html 5/5