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