Answer:
– A web address using “HTTPS” (The extra “S”means it’s a secure connection. – Secure sites show a closed padlock emblem you can click on for security details – the most trustworthy sites will have green padlocks or address bars.
Explanation:
Answer:
def is_reverse(lst1, lst2):
lst2 = lst2[::-1]
if lst1 == lst2:
return True
else:
return False
Explanation:
Create a function called is_reverse that takes two parameters, lst1 and lst2
Reverse the second list using slicing
Check if the first list and the second list are equal to each other. If they are, return True. Otherwise, return False
Answer:
D - Fiber-optic Cables
Explanation:
Electromagnetic interference affects cables made from different metals and can corrupt the data running through them. However, Fiber-optic cables are constructed from glass (non-metallic) and transmit pulses of light as signals to transfer data, this means that the cables are most resistant and not susceptible to EMI.