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
Get me an image implementation program.
Which method cannot be overridden?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
Why do while loop is used?
Why is polymorphism important in oop?
Why is oop better than procedural?
What are the three parts of a simple empty class?
What is the importance of oop?
how to get the oracle certification? send me the answer
What is meant by multiple inheritance?
Can an interface inherit a class?
What is pure oop?
State what is encapsulation and friend function?
What is object in oop?
What is polymorphism give a real life example?