Week 1 Quiz:
1.
Question :
(TCO 1) Which one of the following Windows NET commands will allow other computers to access the C:\Data directory under the share nameUserData?
Student Answer:
NET USE UserData=C:\Data
NET SHARE UserData=C:\Data
NET USE C:\Data = UserData
NET SHARE C:\Data=UserData
Question 2.
Question :
(TCO 1) The netsh command that will set the IP Address of the interface name "NIC" to a DHCP supplied IP address is _____.
Student Answer:
netsh interface set ip address "NIC" source=dhcp
netsh interface ip address "NIC" source=dhcp
netsh interface ip set address "NIC" source=dhcp
netsh interface set ip address source=dhcp "NIC" Instructor Explanation:
See the Week 1 Lecture.
Question 3.
Question :
(TCO 1) Which of the following Windows commands will shutdown and restart the computer FileServer in 2 minutes?
Student Answer:
shutdown -r -m //FileServer -t 2
shutdown -r -m //FileServer -t 120
shutdown -r -m \\FileServer -t 2
shutdown -r -m \\FileServer -t 120 Instructor Explanation:
See the Week 1 Lecture.
Question 4.
Question :
(TCO 1) Which Windows shutdown command switch is used to shutdown and turn off a local or remote computer?
Student Answer:
/h
/halt
/s
/shut Instructor Explanation:
See the Week 1 Lecture.
Question 5.
Question :
(TCO 1) From the Start/Run dialog, the command used to open the 32-bit Windows command prompt is _____.
Student Answer:
command
cmd
start
prompt Instructor Explanation:
See the Week 1 Lecture.
Question 6.
Question :
(TCO 1) The Windows CLI command used to turn off the display of all subsequent commands in a batch file is _____.
Student Answer:
no echo
@echo
echo off
off echo Instructor Explanation:
See the Week 1 Lecture.
Week 2 Quiz:
1.
Question :
(TCO 2) What is the problem with the following statement?
100 = grade
Student