What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / janet
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.
In procedural program,data is exposed to the whole
program where as in OOP's program ,it is accesible within
the object and which in turn assures the security of the
code.
| Is This Answer Correct ? | 111 Yes | 38 No |
Post New Answer View All Answers
What is encapsulation in oop?
What is the difference between a constructor and a destructor?
What is destructor oops?
Why is polymorphism needed?
Plese get me a perfect C++ program for railway/airway reservation with all details.
Why is object oriented programming so hard?
Get me a number puzzle game-program
What is a class and object?
What is polymorphism and its types?
Why is static class not inherited?
assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).
What is use of overloading?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
Can we create object of abstract class?
Which type does string inherit from?