What are the OOPS concepts?
Answer Posted / rakadon
oop concepts are:
1.classes
2.objects
3.data abstraction
4.encapsulation
5.inheritence
6.polymorphism
7.dynmaic binding
8.message passing
these are prime oops concepts.
Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
What is object and class in oops?
What are classes oop?
What is encapsulation in simple terms?
Why is oop better than procedural?
What is multilevel inheritance 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
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
why reinterpret cast is considered dangerous?
What is polymorphism used for?
What is destructor example?
What is a function in oop?
What is polymorphism in oop example?
Which method cannot be overridden?
Can you inherit a private class?
How do you answer polymorphism?