-
-
-
-
-
-
Why Java is not 100 % pure OOPS
Answered by Hari on 2005-05-09 03:02:11: There are so many examples behind this reason. a. Code written using AWT and compiled on windows machine will not run on Unix, since Windows is a graphics rendered environment and unix is not, so will have to provide some XManger to render the Graphics. b. depends on endians, if this is not supported by OS then the class file will not run.
-
-
-
-
-
-
-
-
-
-
Why do threads block on I/O
Threads block on i/o (that is enters the waiting state) so that other threads may executewhile the i/oOperation is performed.
-
What is the Vector class
The Vector class provides the capability to implement a growable array of objects
-
What is the difference between a MenuItem and a CheckboxMenuItem
The CheckboxMenuItem class extends the MenuItem class to support a menu item thatmay be checked orunchecked.
-
Can a Byte object be cast to a double value
Answered by Scott on 2005-05-12 09:24:14: Byte b = new Byte((byte)5); double d = b.byteValue(); System.out.println( "The double value is: " + d );
-
Does a class inherit the constructors of its superclass
A class does not inherit constructors from any of its superclasses.
Java Interview Questions
Ans