explain the concepts of oops?

Answer Posted / ravi kumar soni

Abstraction : Hiding of inner details and showing only what
are required.
Encapsulation : Binding of data and the methods used to
access them. Eg: Classes.
Inheritance : Extending the existing functionaltiy.
Polymorphysim : Change of behavior with context.

Is This Answer Correct ?    10 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Please send ford technologies placement paper 2 my mail id

1660


What makes a language oop?

600


#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

2172


What is object and class in oops?

590


What is data binding in oops?

588






IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?

1585


What are oops methods?

568


What is oops and its features?

592


Why multiple inheritance is not allowed?

586


What is static modifier?

636


What does sksksk mean in text slang?

1540


How do you achieve polymorphism?

618


just right the logic of it 1--> If few people are electing then every time ur candidate should win 2--> arrange books in box, if box carry weight == books weight then take another box..... find the no of box required.

6489


What is interface? When and where is it used?

1666


What is this pointer in oop?

557