Question: Use the sales array to answer. The array was declared using the int sales[5] = {10000, 12000, 900, 500, 20000}; statement. Which of the following

Use the sales array to answer. The array was declared using the int sales[5] = {10000, 12000, 900, 500, 20000}; statement.


Which of the following if clauses verifies that the array subscript stored in the x variable is valid for the sales array? 

a. if (sales[x] >= 0 && sales[x] < 4) 

b. if (sales[x] >= 0 && sales[x] <= 4) 

c. if (x >= 0 && x < 4) 

d. if (x >= 0 && x <= 4)

Step by Step Solution

3.38 Rating (160 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

d ... 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 Microsoft Visual C# Introduction Questions!