What will happen if run the following code? 1: Boolean[] b1 = new Boolean[10]; 2: 3: boolean[] b2 = new boolean[10]; 4: 5: System.out.println("The value of b1[1] = " +b1[1]); 6: System.out.println("The value of b2[1] = " +b2[1]); A) Prints The value of b1[1] = false The value of b2[1] = false B) Prints The value of b1[1] = null The value of b2[1] = null C) Prints The value of b1[1] = null The value of b2[1] = false D) Prints The value of b1[1] = false The value of b2[1] = null The answer is C . please explain why answer is C . I think this is wrong.
java language
Valentin Crettaz
Gold Digger
Sheriff
Joined: Aug 26, 2001
Posts: 7610
posted
0
posting twice the same question is baaaaad ------------------ Valentin Crettaz Sun Certified Programmer for Java 2 Platform