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
What is inheritance in simple words?
What causes polymorphism?
What are the 3 principles of oop?
What is class and object in oops?
State what is encapsulation and friend function?
Why do we need polymorphism in c#?
Explain virtual inheritance?
What are the features of oop?
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?
What is oops and why we use oops?
What is multilevel inheritance explain with example?
What is the problem with multiple inheritance?
What are benefits of oop?
when to use 'mutable' keyword and when to use 'const cast' in c++
What is the types of inheritance?