Question 21 5 pts (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
XOR
AND
OR
NOT
Question 22 5 pts (TCO 3) Which of the following is a possible value for a Boolean expression?
True
-1
21
abcdefg
Question 23 5 pts (TCO 3) Every decision you make in a computer program involves evaluating one or more _____ expression(s).
mathematical
environmental
conditional
assignment
Question 21 5 pts (TCO 3) What VBScript Boolean operator could be used to replace the...
Question 9 5 pts (TCO 1) Determine the Boolean expression for the following gate SENSORA oUTEUT SENSORB inst Z =SENSOR A +SENSOR B SENSOR A - SENSOR B Z Z SENSOR A SENSOR B SENSOR B Z=SENSOR A
Question 19 3 pts (TCO 5) Which command will provide information specific to OSPFv3 routes in the routing table? show ip route ospf show ip route ospfv3 show ipv6 route show ip route ospf show ipv6 route ospf Flag this Question Question 20 3 pts (TCO 5) A network administrator enters the command ipv6 router ospf 64 in global configuration mode. What is the result of this command? The router will be assigned an autonomous system number of 64. The...
QUESTION 1 What will be displayed as a result of executing the following code? int x = 5, y = 20; x += 32; y /= 4; cout <<"x = " << x <<"y = " << y; A. x = 32, y = 4 B. x = 9, y = 52 C. x = 37, y = 5 D. x = 160, y = 80 8 points QUESTION 2 What will be the displayed when the following code...
JAVA 3 PLEASE ANSWER AS MANY QUESTIONS AS POSSIBLE! ONLY 2 QUESTIONS LEFT THIS MONTH!!! Question 12 pts Which is a valid constructor for Thread? Thread ( Runnable r, int priority ); Thread ( Runnable r, String name ); Thread ( int priority ); Thread ( Runnable r, ThreadGroup g ); Flag this Question Question 22 pts What method in the Thread class is responsible for pausing a thread for a specific amount of milliseconds? pause(). sleep(). hang(). kill(). Flag...