What is polymorphism explain its types?
No Answer is Posted For this Question
Be the First to Post Answer
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
write a program to print * * * * * *
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is inheritance and how many types of inheritance?
In c++ there is only virtual destructors, no constructors. Why?
namespace is working on which compiler?
what is object slicing
What is difference between function overloading and overriding?
What is multilevel inheritance?
We have a scale and 7 balls. 1 ball is heavier than all the rest. How to determine the heaviest ball with only 3 possible weighing attempts?
write a program that takes input in digits and display the result in words from 1 to 1000
what is abstract class ? when is used in real time ? give a exp