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


Please Help Members By Posting Answers For Below Questions

What is object and class in oops?

772


What are classes oop?

780


What is encapsulation in simple terms?

748


Why is oop better than procedural?

789


What is multilevel inheritance in oop?

751


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

1943


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).

1874


why reinterpret cast is considered dangerous?

2080


What is polymorphism used for?

758


What is destructor example?

763


What is a function in oop?

815


What is polymorphism in oop example?

715


Which method cannot be overridden?

748


Can you inherit a private class?

828


How do you answer polymorphism?

781