Tell me about a problem you had with a supervisor
Biggest trap of all. This is a test to see if you will speak ill of your boss. If you fall for it and tell about a problem with a former boss, you may well below... Read more »
Biggest trap of all. This is a test to see if you will speak ill of your boss. If you fall for it and tell about a problem with a former boss, you may well below... Read more »
nterfaces are used when we have to develop distributed applications or when we need to implement multiple inheritence. While abstract classes will be used when... Read more »
An abstract class cannot be declared as final. This is because the abstract class has to be inherited by a subclass in order to implement the abstract methods.... Read more »
A abstract method are the methods that have no implementation of its self(i.e by superclass).they do not have body.so the subclass have to override them . Read more »
Abstract data type logical cohesion of operands or variables along with set of operation which can be performed on it. In Java we have most of data types as abstract... Read more »
Basically it depends upon your convinence but what I have known when we consider version control, where a modification of many component depends upon many classes... Read more »
what is the differense between native and abstract? can we declare a method as native inside an interface?if yes then why? if no then why not? Native keyword is... Read more »
There are 5 kind of storage classes auto - : like int extern-: used by other class or programm static -: retain the value through out the executionof the programm register-:... Read more »
I Abstract class must be extended/subclassed (to be useful). It serves as a template. A class that is abstract may not be instantiated (ie, you may not call its... Read more »
the abstract class is nothing but the class which is having the method that too without body and begin with abstract keyword.a class which is incomplete is termd... Read more »
Interface: Code resuability Acheive multiple inheritence If u can add any method that does not effect the class Abstarction If u does not want instance of the class... Read more »
I want to know when to use interface over abstract class. One reason could be because you are extending another class. But it wont be known until some one implements... Read more »
We have to provide abstract data to object mapping that maps the fields in our bean to a batabase, and abstract methods methods that corelate these fields. Read more »
ya But,you must provide implementation in same abstract class,as you cannot override that final method in sub class. Read more »
The Enterprise JavaBeans model supports six different transaction rules: ยท TX_BEAN_MANAGED. The TX_BEAN_MANAGED setting indicates that the enterprise bean... Read more »