What are the OOPS concepts?
Answer Posted / anurag
oops is the object oriented programming.
1)encapsulation
2)data abstraction
3)inheritance
3)polymorphism
4)dynamic binding
5)message communication
| Is This Answer Correct ? | 76 Yes | 30 No |
Post New Answer View All Answers
What is the full form of oops?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Which language is pure oop?
when to use 'mutable' keyword and when to use 'const cast' in c++
What is class and object with example?
What is super in oop?
What is an example of genetic polymorphism?
What is destructor in oop?
What is object in oop with example?
Where is pseudocode used?
What is cohesion in oop?
What is meant by oops concept?
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
Can we override main method?
What is the highest level of cohesion?