Crossword Puzzle Of The Week #4 (for Object Oriented Programming)
In this issue of Crossword Puzzle of the week, we will dive into the topics of Object Oriented Programming. The solution to the crossword puzzle is provided at the end.

Crossword Puzzle Of The Week #2 (for Object-Oriented Programming)
HINTS:
DOWN
1. The class members declared as _____ can be accessed only by the member functions inside the class
2. A ______is a collection of statements that perform some specific task and return the result to the caller.
3. The _____ pointer is passed as a hidden argument to all non-static member function calls and is available as a local variable within the body of all non-static functions.
4. In _____ polymorphism, the compiler resolves the object at run time, and then it decides which function call should be associated with that object.
5. The class _____ is surrounded by braces, { }.ACROSS
6. _____ is an instance member function which is invoked automatically whenever an object is going to be destroyed
7. The _____ statement returns the flow of the execution to the function from where it is called.
8. An _____ is a collection, or the gathering of things together.
9. _____ function can be granted special access to private and protected members of a class in C++.
10. The capability of a class to derive properties and characteristics from another class is called _____ .
Solution for Crossword Puzzle #2:
.png)
Crossword Puzzle Of The Week #2 (for Object-Oriented Programming)
Answers:
DOWN
1. PRIVATE
2. METHOD
3. THIS
4. RUNTIME
5. BODYACROSS
6. DESTRUCTOR
7. RETURN
8. AGGREGATION
9. FRIEND
10. INHERITANCE
Please Login to comment...