subject

Consider the following code segment.

int total = 0;

for (int k = 0; k < = 100; k += 2)

{

total += k;

}

which of the following for loops could be used to replace the for loop in the original code segment so that the original and the revised code segments store the same value in total?

a. for (int k = 0; k < 100; k += 2)

{

total += k + 1;

}

b. for (int k = 1; k < 101; k += 2)

{

total += k - 1;

}

c. for (int k = 0; k < = 101; k += 2)

{

total += k + 1;

}

d. for (int k = 1; k < = 101; k += 2)

{

total += k + 1;

}

e. for (int k = 1; k < = 101; k += 2)

{

total += k - 1;

}

ansver
Answers: 1

Another question on Advanced Placement (AP)

question
Advanced Placement (AP), 24.06.2019 04:30
Anyone knows answer for code.org unit 3: intro to programming, lesson 7: apis and function parameters, bubble 11. !
Answers: 2
question
Advanced Placement (AP), 25.06.2019 01:00
What is tge speed of sound in dry air at 0°c
Answers: 1
question
Advanced Placement (AP), 25.06.2019 03:30
When you can't determine who arrived at an intersection first, yield to the vehicle a. closest to you on the left b. closest to you on the right c. across from you d. with the largest wheelbase
Answers: 1
question
Advanced Placement (AP), 25.06.2019 19:30
Question 1(multiple choice worth 10 points)} stefan sees a commercial on television that makes him think he needs to buy an e-reader. this is an example of wasting time getting distracted allowing someone to set goals
Answers: 2
You know the right answer?
Consider the following code segment.

int total = 0;

for (int k = 0; k <...
Questions
question
Mathematics, 19.09.2021 14:00
question
Mathematics, 19.09.2021 14:00
question
Mathematics, 19.09.2021 14:00
question
English, 19.09.2021 14:00
question
Social Studies, 19.09.2021 14:00
question
Social Studies, 19.09.2021 14:00
question
Mathematics, 19.09.2021 14:00
Questions on the website: 13722367