Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Data And Databases

Authors: Jeff Mapua

1st Edition

1978502257, 978-1978502253

More Books

Students also viewed these Databases questions