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

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;

Step by Step Solution

3.32 Rating (161 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

b for... View full answer

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 Java Programming Questions!