-
-
What is the difference between the Reader/Writer class hierarchy and the InputStream/OutputStream class hierarchy?
The Reader/Writer class hierarchy is character-oriented, and the InputStream/OutputStream class hierarchy is byte-oriented.
-
-
-
-
-
-
-
-
-
-
-
Comments in Java Program must begin with /* and end with */
A) TrueB) False
-
-
-
Java byte code
What is byte code and how it is superior from other code.java's extra features and reason ?
-
Fill in the blanks :- The main subclass of the Exception class is _______ class.
A) RuntimeException
-
-
}
}">What is the meaning of final keyword in java? I know that it is used to declare constant values which are not modifiable. But in the below program even I declare the vector as final, then still I am able to modify it? Can any body explain what is the scenario here?import java.util.*;public class A{ public static void main(String args[]) { final Vector v=new Vector(); v.addElement("element1"): }}
-
Java Interview Questions
Ans