Problem 1
Explain the differcnce betwcen using a computer program and programming a computer.
Problem 2
Write a program that prints the sum of the first ten positive integers, \(1+2+\ldots+10\).
Problem 2
Which parts of a computer can store program code? Which can store user data?
Problem 3
Which parts of a computer serve to give information to the user? Which parts take user input?
Problem 3
Write a program that prints the product of the first ten positive integers, \(1 \times 2 \times \ldots \times\) 10. (Use " to indicate multiplication in Python.)
Problem 4
Write a program that prints the balance of an account after the first, second, and third year. The account has an initial balance of \(\$ 1,000\) and carns 5 percent interest per year.
Problem 5
Write a program that displays your name inside a box on the screen, like this: Dave Do your best to approximate lines with characters such as \(1-4\).
Problem 6
Write a program that prints a face similar to (but different from) the following:
Problem 6
On your own computer or on a lab computer, find the exact location (folder or directory name) of a. The sample file hello.py, which you wrote with the editor. b. The Python program launcher python or python, exe.
Problem 7
What does this program print? $$ \begin{aligned} &\text { print }\left(" 39+3^{\prime \prime}\right) \\ &\text { print }(39+3) \end{aligned} $$