What is oop in simple words?

Answer Posted / pranay

Constructing a program with class object concept is known as oops.

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what are the realtime excercises in C++?

2337


What is difference between abstraction and encapsulation?

594


What is class and object with example?

587


#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

2170


Can bst contain duplicates?

670






What is encapsulation in simple terms?

541


Why multiple inheritance is not allowed?

586


Is oop better than procedural?

576


What is the use of oops?

623


There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.

1460


What is the real time example of encapsulation?

599


What is difference between inheritance and polymorphism?

573


What is the highest level of cohesion?

581


What is overriding in oop?

550


What does I oop mean?

618