1)    What experience do you have with computers?
2)    Here is a simple QuickBasic program:
For n = 1 to 10What list of numbers will this program make?
    Print 3 * n
Next n
3)    Here is a different QuickBasic program:
For n = 1 to 10What list of numbers will this program make?
    Print 4 * n + 5
Next n
4)    Suppose you had this program instead:
For n = 1 to 10Read the code carefully! Will it behave the same as in #3? Explain.
    Print 4 * k + 5
Next n
6)    Write a program that will print this list of numbers:
7
13
19
25
31
7)    Write a program that will print this list of numbers:
1
7
13
19
25
| QR Home Page | Glossary | Previous Worksheet | Next Worksheet |