Question: Q1. Which of the following will correctly create an array of 8 integers in Java? int[ ] myArray = new int[7]; int[ ] myArray =

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];
None of these.
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.
0
2
1
3
4

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); 
0
3
4
2
1
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]; 
1
4
0
3
2
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; } } } }
1,2,4,3,5
1,3,2,5,4
None of these.
3,1,2,4,5
1,3,2,4,5
2,1,3,5,4
3,4,1,5,2
2,1,3,5,4
5,4,3,2,1
1,2,3,4,5

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!