Try Except in Python MCQs Exercise I


Ques 1 Try Except


Which of the following statements are used in Exception Handling in Python?
  a) try-catch
  b) try-catch-default
  c) try-except-default
  d) try-except-finally


d is the correct option





Ques 2 Try Except


What keyword is used to raise exceptions in Python?
  a) try
  b) catch
  c) raise
  d) throw


c is the correct option