|
Related Questions |
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
|
|
Can an anonymous class be declared as implementing an interface andextending a class
|
View Answer
|
|
Which method of the Component class is used to set the position and size of acomponent
|
View Answer
|