What is OOPS and How it is different from Procedural
Programming ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / manish
OOPS is an object oriented language which led it's emphasis
on the set of codes called object rather then it's
procedure......but in the procedural language,procedure is
given more improtance
| Is This Answer Correct ? | 8 Yes | 45 No |
Answer / chumma
Oops ->Structural Programming (C++)
Procedural Programming (C)
| Is This Answer Correct ? | 31 Yes | 77 No |
write a c++ program to find maximum of two numbers using inline functions.
What is abstraction oop?
i am getting an of the type can not convert int to int *. to overcome this problem what we should do?
What is class encapsulation?
Write a program to demonstrate the use of 'Composition' in C++
Will I be able to get a picture in D drive to the c++ program? If so, help me out?
In what situation factory design patterns,DAO design patterns,singleton design patterns should be applied.?
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
What is data binding in oops?
Why do we use virtual functions?
In OverLoading concept,Why they are not consider return value and why they are consider only parameters in method? For ex: public int Add(int a,int b){...} public String Add(int a,int b){...}
What is purpose of inheritance?