What is the output of the following program?

public class arrayExample
{
public static void main(String[] args) {
int myTest[] = {100,1};
int test2[]={12,13,14};
System.out.println(myTest[1]+1);
System.out.println(myTest[1]+test2[0]);
}
}

The output of the first print statement is (blank),

A. 100
B. 2
C. 1
D. 12

and the output of the second statement is (blank).

A. 13
B. 12
C. 14
D. 1