RE: what is a loop?
Hi Yanti,
A loop is basically just a set of statements that run until a condition is set.
For example:
i=0
if i <= 10
do something
i++
The above is pseudocode for a loop, this loop will do something until i reaches 10.
Hope this helps
Tracy