Question 1: C++ OOPS - Polymorphism Concept
What does polymorphism mean in C++?
Question 2: C++ OOPS - Compile-time Polymorphism
Which of the following supports compile-time polymorphism?
Question 3: C++ OOPS - Function Overloading
What will the following code output?
Question 4: C++ OOPS - Operator Overloading
Which operator cannot be overloaded in C++?
Question 5: C++ OOPS - Virtual Function
What will this code print?
Question 6: C++ OOPS - Non-virtual Function
What happens if `virtual` is removed in the above code?
Question 7: C++ OOPS - Pure Virtual Function
How do we declare a pure virtual function?
Question 8: C++ OOPS - Abstract Class Example
What will be the output?
Question 9: C++ OOPS - Function Overriding
What will this print?
Question 10: C++ OOPS - Runtime Polymorphism Example
What is the output?