Computer Science, asked by jassu22, 1 year ago

State True or False:
1. Looping techinque reduces the number of instructions.
2. For statement increments the value of the control variable by one.
3. The same control variable can be used in different loops.
4. In Nested loop, the innermost loop will be executed first then the outer loop.
5. There can be maximum of 9 loops within a loop.
6. WEND clause is used with FOR statement.
7. STEP value can never be negative.
8. The condition in If...Then...Else statement is given by the Relational operations.

Answers

Answered by prabhat1234
49
1) true
2) false
3) true
4) false
5) false
6) true
7) false
8) true
Answered by Anonymous
11

True or false involves, figuring out whether the statement is correct/incorrect.

  • The correct statements are -

1. Looping techinque reduces the number of instructions. - True

2. For statement increments the value of the control variable by one. - False

3. The same control variable can be used in different loops. - True

4. In Nested loop, the innermost loop will be executed first then the outer loop. - False

5. There can be maximum of 9 loops within a loop. - False

6. WEND clause is used with FOR statement. - True

7. STEP value can never be negative. - False

8. The condition in If...Then...Else statement is given by the Relational operations. - True

Similar questions