V
Q. What will be the output? public class Test{ public static void main(String[] args){ int[] a = new int[4]; a[1] = 1; a = new int[2]; System.out.println("a[1] is " + a[1]); } }
After executing the statement a = new int[2], a refers to int[2]. The default value for a[0] and a[1] is 0.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. The ______ refers to the validity of a variable.
Q. Which graph is used to check for deadlock in Java?
Q. What is the output for the below code ?
Q. We can use_________ to convert primitive data types to wrapper class types automatically
Q. Java support RMI. What does this RMI stands for?
Q. What does the "void" keyword indicate in a method declaration?
Discusssion
Login to discuss.