How can you catch and handle multiple exceptions in a single except block in Python?
A. By enclosing the exceptions in parentheses and separating them with commas
B. By using the multiple keyword
C. By using separate except blocks
D. By using the all keyword
Answer: Option A
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