UNIT 3 CROSS WORD PUZZLE PYTHON

12345678910111213141516
Across
  1. 3. When once class contains another class as one of its members
  2. 5. suspicious code is written here
  3. 8. web framework of python
  4. 9. PREDEFINED EXCEPTION
  5. 11. Creating a new class from the existing class
  6. 14. block which will be executed irrespective of exception
  7. 15. A class can be derived from more than one base class is called as ______ Inheritance
  8. 16. make the child class inherit all the methods and properties from its parent
Down
  1. 1. UNEXPECTED EVENT HAPPENING DURING PROGRAM EXECUTION
  2. 2. When more than one derived classes are created from a single base
  3. 4. to keep the Python project dependencies in different places _______ is created
  4. 6. the child class derives from a class which already derived from another class.
  5. 7. to throw an exception
  6. 10. to install flask ________ command is used
  7. 12. constructors are created using ______ function
  8. 13. user defined exception can be created by creating a ________