Assume an array is declared as follows. Which of the following statements correctly assigns the value 100

Question:

Assume an array is declared as follows. Which of the following statements correctly assigns the value 100 to each of the array elements?
int[] num = new int[4];
a. for(x = 0; x < 3; ++x) num[x] = 100;
b. for(x = 0; x < 4; ++x) num[x] = 100;
c. for(x = 1; x < 4; ++x) num[x] = 100;
d. for(x = 1; x < 5; ++x) num[x] = 100;

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Java Programming

ISBN: 978-1337397070

9th edition

Authors: Joyce Farrell

Question Posted: