Which of the following statements is true?

a) The standard exceptions are automatically imported into Python programs b) All raised standard exceptions must be handled in Python c) When there is a deviation from the rules of a programming language, a semantic error is thrown d) If any exception is thrown in try block, else block is executed

 Which of the following statements is true?

a) A non-private method in a superclass can be overridden b) A subclass method can be overridden by the superclass c) A private method in a superclass can be overridden d) Overriding isn’t possible in Python

Which of the following statements is true?

a) The __new__() method automatically invokes the __init__ method b) The __init__ method is defined in the object class c) The __eq(other) method is defined in the object class d) The __repr__() method is defined in the object class