Answer Posted / niranjan kumar niraj
Attractive & effective
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
What is protected in oop?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
Get me a number puzzle game-program
What are classes oop?
What is a class oop?
What is polymorphism oop?
What is the significance of classes in oop?
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
Why polymorphism is used in oops?
Why is there no multiple inheritance?
What is constructor overloading in oop?
What is class encapsulation?
What is coupling in oops?
What is super in oop?
How can you overcome the diamond problem in inheritance?