Q1. Which of the following will correctly create an array of 8 integers in Java?
int[ ] myArray = new int[7]; |
| int[ ] myArray = new int[9]; |
| int myArray = new int[8]; |
| int[ ] myArray = new int[8]; |
Q2.
Given the following array declaration and instantiation in Java, what is the index of the last value in the array?
int[ ] myArray = new int[3];
| No array will be created. |
Q3.
Given the following array declaration and instantiation in Java, what is the index of the last value in the array?
int myArray = new int(3);
| No array will be created. |
Q4.
Given the following array declaration and instantiation in Java, what is the index of the first value in the array?
int[ ] myArray = new int[3];
| No array will be created. |
Q5.
Consider the following small Java program. What will the contents of the array x be when the code finishes running?
public class Driver { public static void main(String[ ] args) { int[ ] x = {3,1,5,2,4}; int a = 0; for (int index = 0; index < x.length - 1; index++) { if ( x[index] > x[index + 1]) { a = x[index]; x[index] = x[index + 1]; x[index + 1] = a; } } } }