ch_7

Descripción

Chapter 7
Joshua Villy
Test por Joshua Villy, actualizado hace más de 1 año
Joshua Villy
Creado por Joshua Villy hace más de 8 años
794
0

Resumen del Recurso

Pregunta 1

Pregunta
Which of the following statements are correct?
Respuesta
  • char[][] charArray = {'a', 'b'};
  • char[2][2] charArray = {{'a', 'b'}, {'c', 'd'}};
  • char[2][] charArray = {{'a', 'b'}, {'c', 'd'}};
  • char[][] charArray = {{'a', 'b'}, {'c', 'd'}};

Pregunta 2

Pregunta
Assume double[][] x = new double[4][5], what are x.length and x[2].length?
Respuesta
  • 4 and 4
  • 4 and 5
  • 5 and 4
  • 5 and 5

Pregunta 3

Pregunta
What is the index variable for the element at the first row and first column in array a?
Respuesta
  • a[0][0]
  • a[1][1]
  • a[0][1]
  • a[1][0]

Pregunta 4

Pregunta
When you create an array using the following statement, the element values are automatically initialized to 0. int[][] matrix = new int[5][5];
Respuesta
  • True
  • False

Pregunta 5

Pregunta
How many elements are array matrix (int[][] matrix = new int[5][5])?
Respuesta
  • 14
  • 20
  • 25
  • 30

Pregunta 6

Pregunta
Analyze the following code: public class Test { public static void main(String[] args) { boolean[][] x = new boolean[3][]; x[0] = new boolean[1]; x[1] = new boolean[2]; x[2] = new boolean[3]; System.out.println("x[2][2] is " + x[2][2]); } }
Respuesta
  • The program has a compile error because new boolean[3][] is wrong.
  • The program has a runtime error because x[2][2] is null.
  • The program runs and displays x[2][2] is null.
  • The program runs and displays x[2][2] is true.
  • The program runs and displays x[2][2] is false.

Pregunta 7

Pregunta
Assume int[][] x = {{1, 2}, {3, 4}, {5, 6}}, what are x.length are x[0].length?
Respuesta
  • 2 and 1
  • 2 and 2
  • 3 and 2
  • 2 and 3
  • 3 and 3

Pregunta 8

Pregunta
Assume int[][] x = {{1, 2}, {3, 4, 5}, {5, 6, 5, 9}}, what are x[0].length, x[1].length, and x[2].length?
Respuesta
  • 2, 3, and 3
  • 2, 3, and 4
  • 3, 3, and 3
  • 3, 3, and 4
  • 2, 2, and 2

Pregunta 9

Pregunta
What will be displayed by the following program? public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int row = 0; row < values.length; row++) for (int column = 0; column < values[row].length; column++) if (v < values[row][column]) v = values[row][column]; System.out.print(v); } }
Respuesta
  • 1
  • 3
  • 5
  • 6
  • 33

Pregunta 10

Pregunta
What will be displayed by the following program? public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int[] list : values) for (int element : list) if (v > element) v = element; System.out.print(v); } }
Respuesta
  • 1
  • 3
  • 5
  • 6
  • 33

Pregunta 11

Pregunta
What will be displayed by the following program? public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1 }, {33, 6, 1, 2}}; for (int row = 0; row < values.length; row++) { java.util.Arrays.sort(values[row]); for (int column = 0; column < values[row].length; column++) System.out.print(values[row][column] + " "); System.out.println(); } } }
Respuesta
  • The program prints two rows 3 4 5 1 followed by 33 6 1 2
  • The program prints on row 3 4 5 1 33 6 1 2
  • The program prints two rows 1 3 4 5 followed by 1 2 6 33
  • The program prints one row 1 3 4 5 1 2 6 33

Pregunta 12

Pregunta
What is the output of the following code? public class Test { public static void main(String[] args) { int[][] matrix = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; for (int i = 0; i < 4; i++) System.out.print(matrix[i][1] + " "); } }
Respuesta
  • 1 2 3 4
  • 4 5 6 7
  • 1 3 8 12
  • 2 5 9 13
  • 3 6 10 14

Pregunta 13

Pregunta
What is the output of the following code? public class Test5 { public static void main(String[] args) { int[][] matrix = {{1, 2, 3, 4}, {4, 5, 6, 7}, {8, 9, 10, 11}, {12, 13, 14, 15}}; for (int i = 0; i < 4; i++) System.out.print(matrix[1][i] + " "); } }
Respuesta
  • 1 2 3 4
  • 4 5 6 7
  • 1 3 8 12
  • 2 5 9 13
  • 3 6 10 14

Pregunta 14

Pregunta
Suppose a method p has the following heading: public static int[][] p() What return statement may be used in p()?
Respuesta
  • return 1;
  • return {1, 2, 3};
  • return int[]{1, 2, 3};
  • return new int[]{1, 2, 3};
  • return new int[][]{{1, 2, 3}, {2, 4, 5}};

Pregunta 15

Pregunta
What will be displayed by the following program? public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; for (int row = 0; row < values.length; row++) { System.out.print(m(values[row]) + " "); } } public static int m(int[] list) { int v = list[0]; for (int i = 1; i < list.length; i++) if (v < list[i]) v = list[i]; return v; } }
Respuesta
  • 3 33
  • 1 1
  • 5 6
  • 5 33
  • 33 5

Pregunta 16

Pregunta
Assume double[][][] x = new double[4][5][6], what are x.length, x[2].length, and x[0][0].length?
Respuesta
  • 4, 5, and 6
  • 6, 5, and 4
  • 5, 5, and 5
  • 4, 5, and 4

Pregunta 17

Pregunta
Which of the following statements are correct?
Respuesta
  • char[][][] charArray = new char[2][2][];
  • char[2][2][] charArray = {'a', 'b'};
  • char[][][] charArray = {{'a', 'b'}, {'c', 'd'}, {'e', 'f'}};
  • char[][][] charArray = {{{'a', 'b'}, {'c', 'd'}, {'e', 'f'}}};

Pregunta 18

Pregunta
What will be displayed by the following code? public class Test { public static void main(String[] args) { int[][][] data = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; System.out.print(data[1][0][0]); } }
Respuesta
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

Pregunta 19

Pregunta
What will be displayed by the following code? public class Test { public static void main(String[] args) { int[][][] data = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; System.out.print(ttt(data[0])); } public static int ttt(int[][] m) { int v = m[0][0]; for (int i = 0; i < m.length; i++) for (int j = 0; j < m[i].length; j++) if (v < m[i][j]) v = m[i][j]; return v; } }
Respuesta
  • 1
  • 2
  • 4
  • 5
  • 6
Mostrar resumen completo Ocultar resumen completo

Similar

Translations and transformations of functions
Christine Laurich
Java Week 5 Object Oriented Programming
Troy Bowlin
Computer science quiz
Ryan Barton
OCR Gateway GCSE P3 Revision Quiz
xhallyx
AQA Biology B1 Questions
Bella Statham
AQA Biology B2 Questions
Bella Statham
AQA Physics P1 Quiz
Bella Statham
GCSE AQA Biology 1 Quiz
Lilac Potato
AQA GCSE Product Design Questions
Bella Statham
Waves
kate.siena
General Knowledge Quiz
Andrea Leyden