What are the OOPS concepts?

Answer Posted / mathivanan

The following are Object Oriented Programming Concepts..

1. Class
2. Objcet
3. Reusability
4. Inheritance
5. Polymorphism
6. Data Encapsulation
7. Data Abstarction
8. Interfaces
9. Message Passing

Is This Answer Correct ?    80 Yes 33 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is class and object in oops?

801


to find out the minimum of two integer number of two different classes using friend function

1853


What is polymorphism give a real life example?

744


What is the difference between abstraction and polymorphism?

819


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2347


Why do we use class?

800


What are the 3 principles of oop?

808


Which language is not a true object oriented programming language?

843


How is class defined?

806


when to use 'mutable' keyword and when to use 'const cast' in c++

1869


What does and I oop mean in text?

832


What are the types of abstraction?

749


What is the significance of classes in oop?

781


Can you inherit a private class?

824


What is overriding in oops?

802