Solved

Given the Following Declaration:int J; Int Sum;

Question 1

Multiple Choice

Given the following declaration:int j; int sum;
Double sale[10][7];
Which of the following correctly finds the sum of the elements of the fourth column of sale?


A) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][3];
B) sum = 0;
For(j = 0; j < 7; j++)
Sum = sum + sale[j][4];
C) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][4];
D) sum = 0;
For(j = 0; j < 10; j++)
Sum = sum + sale[j][3];

Correct Answer:

verifed

Verified

Related Questions