Math, asked by arpitatudu033, 4 months ago

please i need correct answer.. I will mark him/ her Brainliest plus 30tnx​

Attachments:

Answers

Answered by devanshd0007
3

Answer:

d)Only difference between these two loops is that, in while loops, test expression is checked at first but, in do while loop code is executed at first then the condition is checked. So, the code are executed at least once in do while loops.

e)You use a For ... Next structure when you want to repeat a set of statements a set number of times. In the following example, the index variable starts with a value of 1 and is incremented with each iteration of the loop, ending after the value of index reaches 5.

f)for( int i = range_start; i <= range_end; ++i ) 

if( i & 1 ) 

printf("%d", i); 

Step-by-step explanation:

pls mark as brainliest

Answered by gayathrisaravanan96
5

Answer:

1. For loop executes a block of code for a fixed no. of time where as while...Wend statement uses a condition to control the number of iterations to be run.The loop continues as long as the condition expression is true.

Mark as brainiest.

Similar questions