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 the benefit of oop?
How many human genes are polymorphic?
write a programe to calculate the simple intrest and compund intrest using by function overlading
What is inheritance in simple words?
What is class and object in oops?
What is static modifier?
What is destructor oops?
What is the difference between abstraction and polymorphism?
Write a java applet that computes and displays the squares of values between 25 and 1 inclusive and displays them in a TextArea box
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
Explain virtual inheritance?
Can main method override?
What is variable example?
How do you achieve polymorphism?