Answer the following statements true (T) or false (F)

1. The following pseudocode is for a loop that will perform three iterations.
For start = 6 To 2 Step -3
Do something
End For
2. The following pseudocode is for a loop that will perform three iterations.
For start = 5 To 10 Step 2
Do something
End For
3. The Do-While loop is a posttest loop.
4. The While loop gets its name from the way it works: It does a task while a condition is false.

1. FALSE
2. TRUE
3. TRUE
4. FALSE

Computer Science & Information Technology

You might also like to view...

The Quick Access Tool bar gives you one-click access to commonly executed tasks such as saving a file or undoing recent actions

Indicate whether the statement is true or false

Computer Science & Information Technology

Applications that wait for certain actions and inputs and then respond to them are known as__________ applications.

a) object-oriented b) stepping c) event-driven d) movement-oriented

Computer Science & Information Technology