Answer:
A or B would work.
If the developer tell you how to, which depends on what you ask then A would work
But Following links could give several smaller bits of info and resources required which makes B able to work
This seems more of a statement then a question if theres more id like to help
I’m not sure but if I wouod have to answer it would be 2 or 3
TCP port used for SSL Secured.
Answer:
temperature = int(float(input("Enter temperature: ")))
fever = 0
if temperature > 98.6:
fever +=1
else:
fever = 0
print(fever)
Explanation: