Do this:
' Add odd numbers from 1 to 99.
sum = 0
For value = 1 To 99 Step 2
   value += i
Next
Do not do this:
' Add i to the value of sum.
sum += i
Who | Who wrote the source code; who made modifications? |
What | What is the code supposed to do? |
When | When was the course code written; when were the modifications made? |
Where | Where should the reader look for extra explanation? |
Why | Why was the code written the way it was? |