|
Related Questions |
View Answer |
|
As the Swings have more advantages over the AWT.. Why still in market are they using AWTs?? plzz..i want answer..in many interviews they asked me the same.
|
View Answer
|
|
Class hierarchy of AbstractMap is as follows "AbstractMap implements Map" Class hierarchy of HashMap is as follows "HashMap extends AbstractMap implements Map" When AbstractMap implements Map interface and AbstractMap is extended by HashMap, what is the use of again implementing Map interface in the declaration of HashMap?.
|
Class hierarchy of H - Java Interview Questions & Answers">
View Answer
|
|
For what purpose java language is named as java?
|
View Answer
|
|
what is widning and narrowing ?
|
View Answer
|
|
Why do we need interface in Java. Instead of interface we can write the methods in the class itself. Why do we need seperate interface?
|
View Answer
|
|
what is the difference throw and throws
|
View Answer
|
|
what is widning and narrowing ?
|
View Answer
|
|
what is widning and narrowing ?
|
View Answer
|
|
What is the difference between Stream Reader and Stream Writer?
|
View Answer
|
|
Why do we need interface in Java. Instead of interface we can write the methods in the class itself. Why do we need seperate interface?
|
View Answer
|
|
what is the difference throw and throws
|
View Answer
|
|
Solve it... public class test {
public static void main(String[] args) { int i=5; i=i++; System.out.println("result::"+i); } }
The result wil be 5..!! and not 6 why???
|
View Answer
|
|
What happens if a try-catch-finally statement does not have a catch clause tohandle anexception that is thrown within the body of the try statement
|
View Answer
|
|
How is it possible for two String objects with identical values not to be equalunder the ==operator
|
View Answer
|
|
What is the difference between the JDK 1.02 event model and the eventdelegationmodelintroduced with JDK 1.1
|
View Answer
|
|
What is the relationship between a method's throws clause and the exceptionsthat can bethrown during
|
View Answer
|
|
If a class is declared without any access modifiers, where may the class beaccessed
|
View Answer
|
|
What is the advantage of the event-delegation model over the earlier eventinheritancemodel
|
View Answer
|
|
Which Container method is used to cause a container to be laid out andredisplayed
|
View Answer
|
|
In which package are most of the AWT events that support the event-delegationmodel defined
|
View Answer
|