What are the OOPS concepts?

Answer Posted / komichi

The basic OOP concepts are:
1. Data abstraction
2. Data encapsulation
3. Inheritance
4. Polymorphism

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why do we use inheritance?

630


What is an example of genetic polymorphism?

651


What is an interface in oop?

595


Write a program to reverse a string using recursive function?

1792


What is coupling in oops?

598






What is encapsulation in ict?

608


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

2068


What is the point of oop?

656


write a program that takes input in digits and display the result in words from 1 to 1000

1989


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

2760


What is the renewal class?

2169


What is the purpose of enum?

583


What is difference between class and object with example?

564


What is purpose of inheritance?

645


Why is polymorphism used?

586