tel me oops defination in single line

Answer Posted / vinay sharma

It is technik give to think of real word in term of object.

Is This Answer Correct ?    14 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is advantage of inheritance?

778


Give two or more real cenario of virtual function and vertual object

1953


I have One image (means a group photo ) how to split the faces only from the image?............ please send the answer nagadurgaraju@gmail.com thanks in advace...

1717


given a set based questions and 5 questions based on it next data sufficiciency questions 2 and 2/3 english sentence completion with options very easy and 2 synononmys paragraph with 10 questions 10 minutes replace =,-,*,% with -,%,+,* type questions 5 3 questions lik following itssickhere itssickthere itssickhere istsickhere which is nt alike the others very easy

2252


write a C++ program for booking using constructor and destructor.

2133






What is meant by multiple inheritance?

836


What is overriding vs overloading?

670


What is encapsulation c#?

696


What is the difference between abstraction and polymorphism?

714


What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?

2193


Describe these concepts: Polymorphism, Inheritance and Abstraction.

705


What are the 3 pillars of oop?

727


What is oops concept with example?

658


#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

2258


Why do we use oop?

693