What is the difference between multiple and multilevel inheritance in c++?
What are c++ files?
wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster
What are the static members and static member functions?
What is enum c++?
class basex { int x; public: void setx(int y) {x=y;} }; class derived : basex {}; What is the access level for the member function "setx" in the class "derived" above? a) private b) local c) global d) public e) protected
Which is best c++ or java?
If a round rectangle has straight edges and rounded corners, your roundrect class inherits both from rectangle and from circle, and they in turn both inherit from shape, how many shapes are created when you create a roundrect?
Explain public, protected, private in c++?
What is vector pair in c++?
What is ios in c++?
Show the declaration for a static function pointer.
What is difference between class and function?