Saved Bookmarks
| 1. |
Q. 1. Fill in the blanks:a. ___________ refers to the repetition of a set of statements till a given condition remains true.b. ___________ refers to the repetition of a set of statements till a given condition remains false.c. A ___________ is a variable that keeps track of the number of times a particular instruction or set of instructions has been executed within a loop.d. _____________ loop is generally used as a counter loop when you know exactly how many times you need to execute the loop. |
|
Answer» a) LOOP( LIKE for loop and while loop) B) loop( like for loop and while loop) C) counter d) for loop |
|