Definition of Object Oriented Programming in single line?

Answer Posted / srinivasa reddy

ObjectOriented Programming Language is Collection of
Classes And Objects

Is This Answer Correct ?    9 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#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

2155


What is object in oop with example?

684


Which type does string inherit from?

608


Why polymorphism is used in oops?

575


Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.

1996






What is overloading in oops?

587


How is class defined?

571


write a program to enter a string like"sunil is a good boy and seeking for a job" not more than 10 characters including space in one line,rest characters should b in other line.if the next line starts from in between the previous word,then print whole word to next line.

1777


They started with the brief introduction followed by few basic C++ questions on polumorphism, inheritance and then virtual functions. What is polymorphims? How you will access polymorphic functions in C? How virtual function mechanism works?

1379


What is debug class?what is trace class? What differences are between them? With examples.

1596


What is constructor overloading in oop?

595


What is polymorphism give a real life example?

548


Can bst contain duplicates?

660


What causes polymorphism?

563


What is encapsulation with real life example?

558