Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

question # 4 multiple choice what is the missing word in the following …

Question

question # 4
multiple choice
what is the missing word in the following code?
____over120error(exception):
pass
exception
class
def
error

Explanation:

Brief Explanations

In Python, when defining a custom exception class, the keyword 'class' is used. Here, we are defining a new exception - like class named Over120Error which inherits from the built - in Exception class. So the missing keyword is 'class'.

Answer:

B. class