DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED
PROGRAMING.
Answer Posted / renjith m
Structured programming consists of breaking big problems
into smaller problems, then further breaking those into
still smaller problems, and so on, until a level of such
simplicity is reached that the implementation is obvious to
the programmer expected to do the coding. Object-oriented
programming consists of grouping code with the data on
which it operates so that this "object" can function
independently of the rest of the software system.
Structured programming and object-oriented programming are
not mutually exclusive. You can structure the code in an
object, and you can use objects to implement the modules of
code in a structured program.
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
what are the realtime excercises in C++?
INSTANCE FIELDS DECLARED private ARE ACCESSIBLE BY THE METHODS ONLY.CAN WE CHANGE THE private FIELD OF AN OBJECT IN A METHOD OF SOME OTHER OBJECT OF THE SAME CLASS?
What is class in oop with example?
What does enum stand for?
what is difference between class template and template class?
Templates mean
What is a superclass in oop?
What exactly is polymorphism?
What is destructor oops?
What is use of overloading?
What do you mean by Encapsulation?
Get me an image implementation program.
What is encapsulation with real life example?
What is the difference between a constructor and a destructor?