Answer:
T10BASE-T networks require a minimum of Category 3 cable and connection hardware for proper operation.
Explanation:
The characteristics of this cable:
1. Complies with EIA / TIA - 568-B ISO / IEC 11801 Class C
2. 0.51 mm (24 AWG) solid copper conductor
3. PE (Polyethylene) insulation,
4. PVC outer cover,
5. no flame propagator and
6. self-extinguishing.
7. Twisted pair
8. SUITABLE FOR VOICE AND DATA INSTALLATIONS FROM 10Mbps to 16Mbps.
<u>It is suggested to buy the complete coil to change the wiring gradually.
</u>
Answer:
B
Explanation:
stealing someone else's private data
Answer:
=vlookup(h14, a5:h11,8,false)
Explanation:
Here, h15 is the cell in which we need the output and the value to be matched in rows to find the exact row is h14, and the range is expressed as a5:h11. Now to find the column number, we need to figure out the first and the concerned column. So, the concerned column is in which the total attendance is being listed and it is h(h14), and the first column is a. So, the column number is a=1 h=8, =8. And since we need the exact match, the value of the fourth argument is false. And thus, we have the above formula. Remember. vlookup formula is:
=vlookup(cell where the result is to be placed, range, column number in the same row as h14, exact match or approximate match). For exact match it's false, and for the approximate match, it's true.
After looking at your question, I reasoned you were writing this in python. Here's my code, I hope it helps!
while True:
v1 = input("Enter value of first variable (T/F) ")
v2 = input("Enter value of second variable (T/F) ")
v3 = input("Enter value of third variable (T/F) ")
print("v1: {}, v2: {}, v3: {} = T".format(v1, v2, v3) if v1 == "T" and v2 == "T" or v1 == "T" and v3 == "T" else "v1: {}, v2: {}, v3: {} = F".format(v1, v2, v3))