int index = 1;
Boolean [] test = new Boolean[3];
Boolean data = test[index];
What is the result?
Options
- data has the value of false
- data has the value of true
- The code will not compile.
- data has the value of null
CORRECT ANSWER : data has the value of false
Write your comments