Question 67 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 67 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given:

public class App {

public static void main(string[] args) {

Boolean[] bool = new Boolean[2];
bool[0] = new Boolean (Boolean. parseBoolean ("true") );
bool[1] = new Boolean (null);

system. out.print1n(bool[0] + " " + bool[1])

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.