Please explain class & object in c++?
No Answer is Posted For this Question
Be the First to Post Answer
What is polymorphism & list its types in c++?
Given the following seqment of code containing a group of nested if instructions: y = 9; if ((x==3) || (x == 5)) y++; else if (x == 2) y *= 2; else if (x == 4 ) y-= 7; else y = 8; Enter a segment of code (without any IF statements) that does exectly the same thing using the switch structure.
What are the popular tools used to detect memory leaks in c++
Can user-defined object be declared as static data member of another class?
What is a container class? What are the types of container classes?
Of the numbers 12 23 9 28 which would be at the top of a properly implemented maxheap a) 28 b) 9 c) Any of them could be
Do you know what are static and dynamic type checking?
How is modularity introduced in C++?
What is operator overloading in c++ example?
Explain virtual functions in C++.
Out of fgets() and gets() which function is safe to use?
What is c++ virtual inheritance?