Time Remaining:
Page:
1 2 3
Page 1: Multiple Choice
1) Which of the following Windows commands will restart the computer FileServer in 2 minutes? (Points : 5)
1. (TCO
shutdown /r /m //FileServer /t 2 shutdown /r /m //FileServer /t 120 shutdown /r /m \\FileServer /t 2 shutdown /r /m \\FileServer /t 120
2. (TCO : 5)
1) From a 32-bit Windows CLI, the command used to open a new CLI windows is _____. (Points command cmd start prompt
1) Which one of the following Windows NET commands options is NOT used to control services with the NET ????? ServiceName? (Points : 5)
3. (TCO
STOP START CONTINUE PAUSE DELETE
4. (TCO
1) The name of the service that controls the queue of print jobs with the Windows NET command is _____. (Points : 5) PRINTSPOOL PRINTQUEUE
PRINTER SPOOLER
5. (TCO
2) A variable name should always have _____. (Points : 5) double quotes spaces only lowercase letters a descriptive identifier
6. (TCO
2) If a variable holds the value "Ferrari," what is its data type? (Points : 5) Numeric Integer Floating point String
7. (TCO
2) What is the multiplication operator? (Points : 5) = ^ * %
8. (TCO
2) What is the best choice for a variable name representing a bank balance? (Points : 5) bankBalance balance bb b
9. (TCO
2) What is an example of a numeric constant? (Points : 5) "1" "oops" 12432 "12332"
10. (TCO
3) The relational expression must be false in order for the expression to be evaluated as true. The VBScript Boolean operator that defines this evaluation is _____. (Points : 5) math NOT OR AND
11. (TCO
3) What VBScript Boolean operator could be used to replace the nested selection structure in this pseudocode? if empMedicalIns = "Y" then if empDentalIns = "Y" then print empIdNumber, empLastName, empFirstName endif endif (Points : 5) XOR AND OR NOT
12. (TCO
3) What VBScript decision-making statement would be for a single condition and a single code block