-
-
-
-
-
-
-
-
-
-
-
-
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"): }}
-
What are covariant return types?
A method in a subclass returning an object whose type is a subclass of the type returned by the method with the same signature in the superclass.
Java Interview Questions
Ans