Answer:
import random
arr=[]
for i in range(100):
arr.append(i)
while True:
answer=random.choice(arr)
guess=int(input("enter your guess number between 0-100: "))
if answer is guess:
print("right guess\ncongratulations.....")
print("the answer was: "+str(answer))
break
elif guess < answer-20:
print("you guessed too low....\ntry again")
print("the answer was: "+str(answer))
elif guess > answer+20:
print("you guessed too high....\ntry again")
print("the answer was: "+str(answer))
else:
print("incorrect guess\ntry again")
print("the answer was: "+str(answer))
Explanation:
This brainly account all you do is sign out that’s it
I'd sure reset my password because I don't want to lost my email
Answer:
100BaseT
Also called Fast Ethernet
Good luck...
Answer:
The answer to this question is 16 bytes.
Explanation:
8x16 font means it contains 16 rows by 8 columns of 1-bit pixel ( picture element ).
rows=16.
columns=8.
8 bit = 1 byte.
8x1 = 1 byte.
8x16 = 16 bytes.
So 8x16 font size requires 16 bytes of data to store a character.Hence we conclude that the answer is 16 bytes.