What are the main differences between procedure oriented
languages and object oriented languages?
Answer Posted / hbp sandeep
Procedure Oriented Language: It follows the a procedure
that is simply saying it will go line by line in the code
unless if u mentioned any goto are any code breaking
keywords.
Object Oriented Language: In this each and every program is
called as Object. that is simply saying we will breake the
code in to small pieces and we will call the code when we
want.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Why polymorphism is used in oops?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
Can static class have constructor?
What is oops in simple words?
What is the fundamental idea of oop?
What is destructor oops?
Can we create object of abstract class?
if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?
Why is polymorphism important in oop?
write a program using c++ to implement single contiguous memory mangement techniques.display the content of the main memory after yhe allocation of jobs and percentage of the wastage of the main memory
Why is oop better than procedural?
What does enum stand for?
What is polymorphism give a real life example?
When not to use object oriented programming?
Can you inherit a private class?