Q1.Which keyword is used to handle exceptions?
Q2.What does the 'finally' block do?
Q3.How to manually trigger an error?
Q4.What is ZeroDivisionError?
Q9.Can one 'try' block have multiple 'except' blocks?
Q10.What is the purpose of 'assert'?
Q11.What happens if an exception is not caught?
Q12.What is generic exception catching?
Q13.What is the 'else' block in try-except?
Q15.Which block comes last?
Q17.How to get error message in except block?
Q19.What is KeyboardInterrupt?
Q20.Is 'except (TypeError, ValueError):' valid?
Q21.What is StopIteration?
Q22.What is AttributeError?
Q23.What is OverflowError?
Q24.What is FileNotFoundError?
Q25.What is a 'Quiet Exception' pattern?
Q26.Can we raise an exception inside except block?
Q27.What is exception chaining?
Q28.Is 'finally' required for every 'try'?
Q29.What is RecursionError?