-
Binary
Write a program that continues to ask the user to enter any decimal number and calculate it’s binary,octal and hexadecimal equivalent.
Matrix Operation using Operator Overloading
Write a program for four atrithmetic operations in matrix using operator overloading.
Constructor initialization lists
What is advantage of using Constructor initialization lists?
Static Polymorphism
What is Static Polymorphism? Give its syntax and simple example.
What is friend function?
As the name suggests, the function acts as a friend to a class. As a friend of a class, it can access its private and protected members. A friend function is not a member of the class. But it must be listed in the class definition.
Inheritance in C++
While doing inheritance in C++, one thing that is not inherited is what?
Register Relation
Why p++ is faster than p+1?
What is public, protected, private?
Public, protected and private are three access specifiers in C++. 1. Public data members and member functions are accessible outside the class.2. Protected data members and member functions are only available to derived classes.3. Private data members and member functions can’t be accessed outside the class. However there is an exception can be using friend classes.

It looks like you are using an AD Blocker!
Please Turn OFF your ad blocker
- OR -
LOGIN to continue using GeekInterview website.
Ans