Answer:
a web server is a computer than runs websites
Answer:
import random
import math
smaller = int(input("Enter the smaller number: "))
larger = int(input("Enter the larger number: "))
count = 0
print()
while True:
count += 1
myNumber = (smaller + larger)
print('%d %d' % (smaller, larger))
print('Your number is %d' % myNumber)
choice = input('Enter =, <, or >: ')
if choice == '=':
print("Hooray, I've got it in %d tries" % count)
break
elif smaller == larger:
print("I'm out of guesses, and you cheated")
break
elif choice == '<':
larger = myNumber - 1
else:
smaller = myNumber + 1
Explanation:
- Inside an infinite while loop, add the smaller and larger number and assign that value to myNumber variable.
- Check the choice and then print the relevant display message.
<span>Act on your emotions in the moment instead of thinking about them. </span>
The answer is A. A firewall is a piece of software that monitors all connections to make sure no attacks can be made in the internal or external networks