What is OOPS?

OOP is the common abbreviation for Object-Oriented Programming. 

  

Editorial / Best Answer

Answered by: shahistha

  • Dec 5th, 2005


OOPs is an Object Oriented Programming language,which is the extension of Procedure Oriented Programming language.OOps reduce the code of the program because of the extensive feature of Polymorphism.OOps have many properties such as DataHiding,Inheritence,Data Absraction,Data Encapsulation and many more.

Showing Answers 1 - 75 of 108 Answers

Sushil

  • Jul 19th, 2005
 

OOPs is the new concept of programming ,parallel to Procedure oriented programming.It were intorduced in late 80's.It consider the programming simulated to real world objects.It help in programming approach in order to built robust,user friendly and efficient softwares and provide the efficient way to maintain real world softwares.

  Was this answer useful?  Yes

Aashish Renpaurkar

  • Sep 17th, 2005
 

- Organize a program around its data (object)& set well define interface to that data. i.e. objects and a set of well defined interfaces to that data

satyasahoo

  • Oct 2nd, 2005
 

which contains the properties of inheritance encapsulation and polymorphysim basically that is called oops . and the abreivition is object oriented language . which applied in c++ fully

madhusudan rana

  • Oct 4th, 2005
 

Languages called "Pure" OO languages, because everything in them is treated consistently an object, from primitives such as characters and punctuation, all the way up to whole classes, prototypes, blocks, modules, etc. They were designed specifically to facilitate, even enforce, OO methods. Examples: Smalltalk

sudheer

  • Nov 13th, 2005
 

oops is object oriented programming.here we will wrie program easiest manner when compare to c.in oops we can use polrmorpism,inheritance etc...

MANOJ NEGI

  • Nov 21st, 2005
 

oops is a programming language organised around object rather than action and data rather than logic

  Was this answer useful?  Yes

shahistha

  • Dec 5th, 2005
 

OOPs is an Object Oriented Programming language,which is the extension of Procedure Oriented Programming language.OOps reduce the code of the program because of the extensive feature of Polymorphism.OOps have many properties such as DataHiding,Inheritence,Data Absraction,Data Encapsulation and many more.

venkatramudu

  • Jan 18th, 2006
 

oops is a object programming language it is extention of coops are used for inheritence polymorphism all are used in c++ language

A.Ambeth raja.

  • Apr 13th, 2006
 

OOPS is contains of the encapsulation, polymorphism, Inheritance is called a OOPS concept. That contain oops is Object Oriented Programing Language

Pushpa Siva Kumar

  • Dec 14th, 2006
 

OOPs -> Object Oriented Programming which supports objects, which includes data hiding, abstraction, encapsulation, polymorphism, message passing.

  Was this answer useful?  Yes

muralikrishna

  • Jan 26th, 2007
 

OOPs is a Object Oriented Approach It has high features like MODIFIABILITY & EXTENDABILITY.That is the OOPs Concept in realtime.

  Was this answer useful?  Yes

prafull

  • Mar 28th, 2007
 

As compare to structural language like C it provides more flexibility and it is frindly to the  programmer
I would rather say object's talking to each other and maintaining their relationship.

  Was this answer useful?  Yes

killing time

  • Jun 14th, 2007
 

Its an abbreviation which means object oriented programming language which
consist of class and objects. There are four aspects in OOPS language.
1) Classes and Objects
2) Data Hiding
3) Encapsulation
4) Inheritance
5) Polymorphism


  Was this answer useful?  Yes

Shashidhar Banda

  • Oct 19th, 2007
 


In servlets

If we are using Do get method, then we can transfer the data and that data appends the address bar that means we cannot provide the security and
by using do get method it is a idempotent.

If we are using Do post method , then we can transfer the large amount of data
and that data cannot be append to the addres so we can provide the security and it is not idempotent.

  Was this answer useful?  Yes

Mukesh Shah

  • Oct 24th, 2007
 

It is an approach that provide way of modularizing programs by creating a partition memory area for both data and function that can be treat as a framework for creating a such modules on demand. It involves inheritance, polymorphism, encapsulation, Dynamic Binding.

  Was this answer useful?  Yes

prakashb83

  • Jun 3rd, 2008
 

OOPs is obect oriented Programing struture.it is all statement or black based upon the object.advandagesReduce memory speedcode reusabilty

  Was this answer useful?  Yes

prakashb83

  • Jun 3rd, 2008
 

OOPs is obect oriented Programing struture.it is all Programming statement or black based upon the object.advandagesReduce memory speedcode reusabilty

  Was this answer useful?  Yes

shakeebmca

  • Jun 19th, 2008
 

Opps stands for Object oriented programming. Its a programming language, 
the main objective of this language is reusability of the code.

The five basic concepts of OOP are:

Objects
Class
Encapsulation
Inheritance
Polymorphism.


  Was this answer useful?  Yes

aggarwal007

  • Aug 14th, 2008
 

Emphasis in on data rather than procedure,  programs are divided into what are known as object, classes and methods which are feature of OOPS

  Was this answer useful?  Yes

kranti_435

  • Sep 1st, 2008
 

OOPS is a style of programming where the code and data are bound together in objects, whose structures are based on class hierarchies.

  Was this answer useful?  Yes

Object Oriented Programming organizes a program around its data and establish a set of interfaces to that data.
OOP is a Solving technique to think the real world in terms of object. An Object Maps the Software model to real world.

  Was this answer useful?  Yes

Remija

  • Feb 20th, 2009
 

OOPS is object oriented programming. Here we will write program easiest manner when compared to C. In OOPS we can use polymorpism, inheritance etc.

  Was this answer useful?  Yes

raghsit07

  • Jun 10th, 2009
 

oop's is a method of partionating the memory for data members and memeber functiions
which can be used as a template for creating more copies on demand.

  Was this answer useful?  Yes

goksn

  • Sep 9th, 2009
 

OOP is Object oriented programming.

There are two ways of programming,

Programs written around "What is happening?" is called "Process-Oriented Programming".

Programs written around "Who is being affected?" is called "Object-oriented programming".

Thus , in OOP, much importance is given to data , which function/method accessing the data, how data is changed/unchanged. A concept called object is used to bind the data and method (to access the data).

OOP has other characteristic such as,

Encapsulation & Abstraction
Inheritance
Polymorphism

  Was this answer useful?  Yes

A language is said to object oriented programming language if it support all the four features.
OOP got four features:        
1) Encapsulation                                     
2) Abstraction                                      
3) Polymorphism
4) Inheritances    

  Was this answer useful?  Yes

ramg4java

  • Jul 30th, 2010
 

Real world objects have both state and behavior. 

 
Object Oriented Programming facilitates a way to represent state(as data fields) and behavior(implemented as methods) in application development so as to map to the real world objects.
 
Features include encapsulation, polymorphism, inheritance, abstraction.

  Was this answer useful?  Yes

qubotunga

  • Oct 11th, 2010
 

car = application
assembling several different parts(components) makes a car = object oriented(OO)
each part has its own functionality,principles ...... which driver(developer)dont need to know!(Hiding) = ABSTARCTION
once we know how to assemble different parts we can make many number of cars = INHERITANCE
As we know cars,trucks,van.... have almost same functionality but slight variation we can make trucks and vans by slightly changing few functions and methods = POLYMORPHSM

 

  Was this answer useful?  Yes

vijay pandey

  • Dec 3rd, 2011
 

OOOPs means object oriented programming language, it based on real object in the world, data hiding, encapsulation, polymorphism, inheritance,and abstraction are included;

  Was this answer useful?  Yes

eswaran

  • Jan 4th, 2012
 

OOPs - Object oriended programming

It supports object and it contains concepts such as - data hiding, data abstraction, data encapsulation, inheritance, polymorphism...etc)

  Was this answer useful?  Yes

subramaniyan

  • Feb 28th, 2012
 

Object-oriented programming (OOP) is a programming paradigm using "objects" – data structures consisting of data fields and methods together with their interactions – to design applications and computer programs. Programming techniques may include features such as data abstraction, encapsulation, messaging, modularity, polymorphism, and inheritance. Many modern programming languages now support OOP


  Was this answer useful?  Yes

umretiya jaydeep

  • Mar 9th, 2012
 

oops stands for object oriented programming language. Main concept is object thats thru we can display real world.

object=private(process)+public(data)

oops is some feature like encapsulation, polymorphism, inheritance as well as data hiding, and other method related to use.

  Was this answer useful?  Yes

It is a problem solving technique to develop software system. it is a technique to think real world in terms of object.Object maps the software model to real world concepts. Object have responsibilities and provide services to application or other objects.

  Was this answer useful?  Yes

Alok Kumar

  • May 27th, 2012
 

oops stands for object oriented programming.language.

There are two ways of programming ,programs written around "What is happening" is called "Process-oriented programming".
Thus, in oop ,much importance is given to data ,which function/method accessing the data ,how data is changed/unchanged .a concept called object is used to behind the data and method (to access the data).

as other characteristic such as,

Encapsulation & Abstraction
Inheritance
Polymorphism

OOP h

  Was this answer useful?  Yes

Santosh Kumar

  • Oct 11th, 2012
 

Object oriented programming organizes a program around its data,i.e object and a set of well defined interfaces to
that data.An object oriented program can be charactrized as data controlling.

  Was this answer useful?  Yes

Sirsat Manisha

  • Oct 31st, 2012
 

OOp is stands for object oriented programming language. The oops provides some facilities such as inheritance,polymorphism,data abstraction etc.
Oops reduces the size of program.

  Was this answer useful?  Yes

K SURESH

  • Feb 18th, 2013
 

OOPS is abbreviated as Object Oriented Programming system in which programs are considered as a collection of objects. Each object is nothing but an instance of a class.
Class is a collection of the object, and it has common structure and behavior.
Object is termed as an instance of a class, and it has its own state, behavior and identity.
Encapsulation is an attribute of an object, and it contains all data which is hidden. That hidden data can be restricted to the members of that class.
Polymorphism is nothing but assigning behavior or value in a subclass to something that was already declared in the main class. Simply, polymorphism takes more than one form.
Inheritance is a concept where one class shares the structure and behavior defined in another class. If inheritance applied on one class is called Single Inheritance, and if it depends on multiple classes, then it is called multiple Inheritance.


  Was this answer useful?  Yes

pooja odhekar

  • Feb 28th, 2013
 

OOPS provides features like polymorphism, inheritance, abstraction.

  Was this answer useful?  Yes

MD SADDAM HUSSAIN

  • Mar 22nd, 2016
 

OOPs. Object Oriented Programming is a paradigm that provides many concepts such as inheritance, data binding, polymorphism etc.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions