Given the following array declaration, what value is stored in testScores[2][0]?

```
Declare Integer testScores[3][3] = 66, 77, 88,
98, 87, 76,
65, 74, 89

```

a. 98
b. 88
c. 89
d. 65


d. 65

Computer Science & Information Technology

You might also like to view...

of the following is a variable declaration statement?

a. int total; b. import java.util.Scanner; c. public static void main(String args[]) d. // first string entered by user

Computer Science & Information Technology

Change file1 name to oldfile1

What will be an ideal response?

Computer Science & Information Technology

If an integer array named Ages is initialized with the following values: 7, 12, 9, 6 what will be the output of the statement:

```cout << Ages;``` A. This will display a compiler error. B. 7, 12, 9, 6 C. 0 D. A hex value.

Computer Science & Information Technology

Which method can be used to read a whole line from the file?

a. next b. nextLine c. nextInt d. nextDouble

Computer Science & Information Technology