What are the OOPS concepts?

Answer Posted / rajeev shishodia

Simple meaning of OOPS is Object Oriented Programming Skill.
Which is programming language work on the following 3
features as known as OOPS based language?
1. Encapsulation / Abstraction
2. Inheritance
3. Polymorphism

Is This Answer Correct ?    0 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to implement OOPS concepts such as inheritance, polymorphism, friend function, operator overloading?

4473


What is polymorphism in oop example?

729


Whats is abstraction in oops?

835


Is abstract thinking intelligence?

794


What is object-oriented programming? Webopedia definition

954


Why multiple inheritance is not possible?

794


What exactly is polymorphism?

862


Why do while loop is used?

772


Which type does string inherit from?

836


#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

2377


Give an example where we have to specifically use C programming language and C++ programming language cannot be used?

1379


Templates mean

1832


What are the important components of cohesion?

745


Which is not an object oriented programming language?

737


What is the purpose of enum?

765