DIFFRENCE BETWEEN STRUCTURED PROGRAMING AND OBJCET ORIENTED
PROGRAMING.
Answer Posted / abhi
Procedure Oriented Programming
 Importance is given to the sequence of things to be
done i.e. algorithms
 larger programs are divided into functions
 most functions share global data i.e data move
freely around the system from function to function.
 there is no access specifier
 operator cannot be overloaded
 follows top to bottom approach
 Inheritence is not supported
Object Oriented Programming
 Importance is given to the data.
 larger programs are divided into objects
 mostly the data is private and only functions
inside the object can access the data.
 there are public, private and protected specifier.
 operator can be overloaded
 follows bottom to top approach
 Inheritence is supported
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is ambiguity in inheritance?
c++ program to swap the objects of two different classes
Is this job good for future? can do this job post grduate student?
What is the real life example of polymorphism?
can inline function declare in private part of class?
What is abstract class in oop?
Can abstract class have normal methods?
#include
Is data hiding and abstraction same?
How do you achieve polymorphism?
How does polymorphism work?
What is new keyword in oops?
What is encapsulation with real life example?
What are the 3 pillars of oop?
What is encapsulation in ict?