Sunday, May 23, 2010

Learning & Assessment Activity 4.3

1. Revisit the project named LA_1.6

2. Answer the following questions:

• Is the code inside of the Ends button an example of a Do While or a Do Until loop?

It is Do While

• What is the condition being tested?

intCount <= 1

• How is the condition changed?

By changing either the < which means less then to > which means greater than or by changing the number
which in this case is =1 to any other number that may be required. For example a change such as the one below could be used.

Do While intCount >= 10

No comments:

Post a Comment