MAKE SURE TO SHOW YOUR CAMERA VIEW AT ALL TIME- MAKE SURE YO…

MAKE SURE TO SHOW YOUR CAMERA VIEW AT ALL TIME- MAKE SURE YOUR HANDS, YOUR HEAD AND YOUR SURFACE IS ON CAMERA VIEW. DO NOT STARE SPOTS OTHER THAN YOUR SCREEN, DO NOT TALK OUT LOUD AND REPEAT QUESTIONS OUT LOUD, DO NOT STAND UP OR MOVE YOUR BODY, FACE OR EYES AWAY FROM THE CAMERA VIEW.   If you fail these, your exam might not be graded, and/or you might be reported to Dean’s office for possible AIP violation case.

What best describes what this code is doing? try:    guess =…

What best describes what this code is doing? try:    guess = int(input())    if guess < 0:        raise ValueError("Invalid guess.")except ValueError as error:    print("Caught ValueError:", str(error))except Exception as error:    print("Caught unknown error:", str(error))