What are the OOPS concepts?

Answer Posted / janet

Object oriented programming organizes a program around it's
data i.e objects and a set of well defined interface to
that data. An Object-oriented program can be characterized
as data controlling access to code.

Is This Answer Correct ?    432 Yes 241 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Advantage and disadvantage of routing in telecom sector

790


Can we create object of interface?

611


Can bst contain duplicates?

678


Is oop better than procedural?

578


What is difference between data abstraction and encapsulation?

621






#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


can we make game by using c

3434


What is abstract class in oops?

604


What do you mean by Encapsulation?

645


Which language is pure oop?

553


Get me an image implementation program.

1563


What is polymorphism and its types?

601


Why is there no multiple inheritance?

572


What is the difference between static polymorphism and dynamic polymorphism?

587


What is the purpose of polymorphism?

683