How can you create a custom exception class in Python?
A. By inheriting from the Exception class
B. By using the throw keyword
C. By using the custom keyword
D. By creating a new class
Answer: Option A
Related Questions on Exception Handling in Python
What is the purpose of exception handling in Python?
A. To handle runtime errors and prevent the program from crashing
B. To print error messages
C. To ignore errors
D. To enhance program speed
When is the finally block executed?
A. when there is no exception
B. when there is an exception
C. only if some condition that has been specified is satisfied
D. always
What is an exception in Python?
A. An error that occurs during the execution of a program
B. A built-in function
C. A keyword
D. A specific data type
How many except statements can a try-except block have?
A. zero
B. one
C. more than one
D. more than zero

Join The Discussion