What are the 5 oop principles?
Answer / Pushpendra Raghuvanshi
"Encapsulation", "Inheritance", "Polymorphism", "Abstraction", and sometimes "Association"
| Is This Answer Correct ? | 0 Yes | 0 No |
swapping program does not use third variable
Why a "operator=(...)" when there is a copy ctor?
What is the diamond problem in inheritance?
char* ptr = "Rahul"; *ptr++; printf("%s",ptr); What will be the output
What is the main difference between C++ and Java
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 Method overloading?
What is polymorphism programming?
Definition of Object Oriented Programming in single line?
33 Answers Impact Systems, Q3 Technologies, TCS,
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
pointers are support in C#? if yes then how to use it?
8 Answers Softvision Solution,
what is the difference between containership and inheritence?