OOP is the common abbreviation for Object-Oriented Programming.
Latest Answer : 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:ObjectsClassEncapsulationInheritancePolymorphism. ...
Inheritance is the process by which one object acquires the properties of another object.
Latest Answer : Inheritance involves building upon an existing class so that additional or more-specialised functionality is added.A key design aspect of inheritance is that it is used in a manner which is understandable and supported by a clear, justifiable relationship. ...
Latest Answer : persistence for permanenet storage, transient for temporary storage, ...
Can we create a object of Base class?..If we can not create a object of base class then why we need Abstract class?
Latest Answer : When we create object from a class, it is created on stack or on heap. The existance of an object in memory (stack or heap) is called instance of an object.Hence Instance and object is used interchangeably. ...
Latest Answer : Server container will call the callback methods like init() etc.. throught which the servlet object is constructed ...
Latest Answer : This is method of thinking to resolve the problem ( implimenting the applicaiton using software languages).           - POP : Procedure thinking  ( modular approach of solve the problem)        -OOP : Object Thinking ( object ...
Latest Answer : Object-based language" may be used to describe any programming language that is based on the idea of encapsulating state and operations inside objects. Other than VB and java script examples of object-oriented languages include Simula, Smalltalk, ...
Latest Answer : other object oriented languages are c++ & simula 67 ...
Latest Answer : Classes and objects are separate but related concepts. Every object belongs to a class and every class contains one or more related objects. A Class is static. The attributes of a class don't change. An Object on the other hand has a limited lifespan. ...