Computer Science, asked by pradeep7251, 10 months ago

Which of the following will be correct in BlankD?

i = i + 1; term = term / (i+1); result = result + term;

result = result + term; i = i + 1; term = term / (i+1);

i = i + 1; result = result + term; term = term / (i+1);

term = term / (i+1); result = result + term; i = i + 1;

Answers

Answered by vasugoyal20
1

Answer:

I think answer a is corrected

Similar questions