What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / p.madhupriya
OOPS means Object Oriented Programming Languages and
Systems and is different from the Structural programming in
the fact that in OOPS programming you take advantage of
Polymorphism, Multiple inheritance and Abstraction and
Encapsulation of the data by using Private and this helps
in Security of Data while giving you the levarage to
program your software system with the maximum flexibility.
In procedural program ,programming logic follows
certain procedures and the instructions are executed one
after another. In OOPs program,unit of program is
object,which is nothing but combination of data and code.
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
When not to use object oriented programming?
What is meant by oops concept?
What do you mean by abstraction?
How do you achieve runtime polymorphism?
Can a destructor be called directly?
What is polymorphism programming?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
What is inheritance write a program to show use of inheritance?
What are the important components of cohesion?
What is encapsulation and abstraction? How are they implemented in C++?
How oops is better than procedural?
What is the diamond problem in inheritance?
What is the problem with multiple inheritance?
What exactly is polymorphism?
What are the 3 principles of oop?