Definition of Object Oriented Programming in single line?

Answer Posted / chitra

oop is the feature that allows a mode of modularizing
programs by forming separate memory area for data as well
as functions that is used as object for making copies of
modules as per requirement.

Is This Answer Correct ?    20 Yes 13 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is an example of genetic polymorphism?

651


can we make game by using c

3432


What polymorphism means?

624


#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


What is polymorphism and why is it important?

562






Why polymorphism is used in oops?

585


What is polymorphism and types?

602


What does sksksk mean in text slang?

1537


Write A Program to find the ambiguities in Multiple Inheritance? How are they resolved.(Virtual Functions)

3557


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6155


class type to basic type conversion

1840


Write a program to reverse a string using recursive function?

1794


Who invented oop?

659


What is meant by multiple inheritance?

740


Why do while loop is used?

578