What is OOPS and How it is different from Procedural
Programming ?

Answer Posted / vikram k

OOPS stands for object oriented programming languages which
uses concepts like class, object, Encapsulation,
Inheritance, data hiding etc and are used to map real world
entities with oops concepts.
Procedural language do one job at a time which is set of
independents procedures suffers from "singularity problem"
other is as simple as way to solve the problems..

Is This Answer Correct ?    18 Yes 27 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What do you mean by overloading?

585


Is this job good for future? can do this job post grduate student?

1694


What is the real time example of inheritance?

645


What does I oop mean?

618


What is debug class?what is trace class? What differences are between them? With examples.

1612






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

1702


Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer

1623


Why is polymorphism needed?

605


explain sub-type and sub class? atleast u have differ it into 4 points?

1838


What are the 3 principles of oop?

619


What is class in oop with example?

623


Templates mean

1592


If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?

944


Why is oop useful?

602


What is oops with example?

566