Answer: verification testing
Explanation:
Verification testing is the testing that runs the system in a simulated environment using simulated data. Verification testing involves different activities like design review, system requirements, business requirements, and code walkthrough which are used while a a product is being developed. It is done in order to ensure they the right product is being developed.
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: