Explain rtti.
What is encapsulation in c++?
What is exception handling in C++?
Write a recursive program to calculate factorial in c++.
What is private inheritance?
What is the output of: String a1 = "Hello"; String a2 = "world!"; String* s1 = &a2; String& s2 = a1; s1 = &a1; s2 = a2; std::cout << *s1 << " " << s2 << std::endl;
What is a pure virtual function? Why is it represented as = 0...how is the internal implementation for the same
What is conditions when using boolean operators?
What are the various arithmetic operators in c++?
What is size of empty class object
Write about an iterator class?
What is linked list in c++?
Comment on c++ standard exceptions?