Answer:read
Explanation:
airpods
headphones
earbuds
AirPods pro
watch
fitbit (type of watch that counts your miles) &you can say workout watch&
VR set
technology bracelet
smart glasses
Smart ring
Answer:
Make sure the cables are functional and properly plugged.
Explanation:
For the fact that everything was working perfectly before the move, but after the move, it was noticed that a few workstations cannot get a valid IP, the first thing that is required to be checked is to ensure that the cables are properly plugged, and if they are, make sure that you test for the functionality of the cables. It is only after these checks and the problem persist, that further troubleshooting is required.
(python) Answer:
sum = 0
for i in range 1 to 101:
if i modulo 2 == 0:
sum += i
print(sum)
Explanation:
first we declare the sum variable
then go through all numbers 1 through 100 (range 1 to 101 because python range does not include the last number - if we did 1 to 100 it would look at 1 to 99)
if the number is even (divide by 2, check if there's a remainder, if not it's even and we will add the number to the sum
finally print the sum
The answer to your question is D