Question

num1 = int(input("Please enter a dividend: "))
num2 = int(input("Please enter a divisor: "))
print("The result is: ", num1/num2)

Looking at snippet1.py in the previous question, our snippet threw a ZeroDivisionError. How is that error classified?(1 point)
Responses

Runtime Error
Runtime Error

Silly Error
Silly Error

Logic Error
Logic Error

Syntax Error

Answers

There are no human answers yet.
Answered by GPT-4o mini
The error thrown by the code snippet when the divisor (`num2`) is zero is classified as a **Runtime Error**. This type of error occurs during the execution of the program, as it violates the rules of mathematical operations (division by zero).

So, the correct response is:

**Runtime Error**

Related Questions