Treemap implement Navigable map
Abstract class can be inherited
What is the return type of equals() method of String class?
Which of these Java interfaces define a method itemStateChanged()
?
To implement serialization in java there is an interface defined in ______ package called serializable.
Which event is generated when an item from a list, a choice, or a check box is selected?
Which two of the following methods are defined in the Thread
class?
public class abekus
{
public static void main(String[] args) {
int a = Integer.parseInt("abekus");
System.out.print(a);
}
}
What would be the output of the following code?
int a = 5 ;
if(a<=0)
{
if(a==0)
{
System.out.println("a ");
}
else
{
System.out.println("b ");
}
}
System.out.println("c ");
Which of the following should be true of the object thrown by a throw
statement?