What is OOPS and How it is different from Procedural
Programming ?
Answer Posted / jayasrinivas.donavalli
In Procedural Programming language the execution of
application can be step by step. That means the data can be
executed ina sequential manner but in Object oriented
languages the application executed according to the order
we wrote in the program.
that means there is no need to follow the order of
execution on OOP.
it depends on the object.
| Is This Answer Correct ? | 25 Yes | 49 No |
Post New Answer View All Answers
What is the difference between inheritance and polymorphism?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is static modifier?
What are the three parts of a simple empty class?
What is multilevel inheritance?
What is difference between inheritance and polymorphism?
How do you define a class in oop?
What is class and object with example?
Why is destructor used?
What is the diamond problem in inheritance?
Get me a number puzzle game-program
what type of question are asked in thoughtworks pair programming round ?
Can we create object of interface?
How do you answer polymorphism?
What language is oop?