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 difference between inheritance and polymorphism?
write knight tour problem which is present in datastructure
What do you mean by overloading?
Can enum be null?
What is the purpose of polymorphism?
What is purpose of inheritance?
Write a program to reverse a string using recursive function?
What is overriding in oop?
What is abstraction oop?
Following are the class specifications: class {int a}; class {int b}; Using friend funtion,calculate the max of two objects and display it.
What is the difference between inheritance and polymorphism?
What is the significance of classes in oop?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Why is polymorphism used?
What is encapsulation in oops?