What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / krishna
OOps is the object oriented programming system in which objects are used to encapsulate data and code,which provides security.logic flows with in the object.
while in procedural language logic flows with in procedure
and there is no any concept of object thats y all program is executed step by step.public and private access specifiers r not used in procedural language,means data will access in whole program ,there is no any security aspects.
OOPS having some adv over procedural language like inheritence,polimorphism,encapsulation etc which make OOPS more flexible sa comp. to procedural language.
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
Prepare me a program for the animation of train
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
What is class encapsulation?
What is the difference between static polymorphism and dynamic polymorphism?
Give an example where we have to specifically use C programming language and C++ programming language cannot be used?
There are two base class B1,B2 and there is one class D which is derived from both classes, Explain the flow of calling constructors and destructors when an object of derived class is instantiated.
What is polymorphism in oops with example?
What is abstraction oop?
Can static class have constructor?
What is the important feature of inheritance?
What is object in oop?
write a C++ program for booking using constructor and destructor.
What is the benefit of oop?
What is inheritance write a program to show use of inheritance?
What exactly is polymorphism?