OOP is the common abbreviation for Object-Oriented Programming.
Emphasis in on data rather than procedure, programs are divided into what are known as object, classes and methods which are feature of OOPS ...
1.what is meant by inheritance,single inhertiance,multiple inheritance?2.define abstract class & abstract method?3.how to developed and delopying a SERVELT,JSP program in the TOMCAT APACHE SERVER,WEBLOGIC
Basically inheritence means subclass inherit the features of his parent class as well as his own different additional features. The example is parents and child. The child have features from his mother and father as well as his own additional features. ...
There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation
main principal of OOPS areEncapsulation : binding the data and function in a unit called class is called a data encapsulation. this allow the user to hide the information for outside world and doesn't allow the other user to change or ...
Dear friends, few facts about why java is not based on 100% OOPS Concept,
1. Use of primitive datatypes i.e., int, float etc. which aren't objects but java still suports it.
2. According to OOP principle every variable in the class should be accessed ...
Hi, Java doesnot support multiple inheritance. This is where java differs from c++. Consider a class called Human and a sub class may be Student, Engineer, Employee. All the three has Human characteristics. But in C++, We can inherit ...
Well! the main advantage of OOPs is that it uses the concept of classes and object. which differs it totally from the POP. Due to uses of classes, it becomes more easy to divide a large program into smaller modules which can be treated separately.The ...
1)whats the difference in data types of java and c++?2)what is the use of finally block??3)what is encapsulation in oops?how is it achieved in Java?
There are three types of oops in java.1.Encapsulation:Encapsulation is mechanism, that bindstogether data and code its manipulates.Ex:suppose we are writing one bean. we declaring two privatevariables. we are providing setters and getters methods oftwo ...
we can use classes and objects in java .so java follows oops concept. ...
Theoritically the oops support is not there but some tricky methods are there.1. Create the function (Even for properties) in a class B2. Use Impements keyword to implement each Function of B in Derived Classs D. With 3. Create a private ...
View page [1] 2 3 4 5 Next >>

Go Top