Professor Abdul-Quader
Lesson 0
The study of algorithmic problem solving
Roughly three parts to the course:
Each part builds upon previous parts! Don’t fall behind!
Recall: an “algorithm” is a list of steps needed to solve some problem in full generality. Describe, as precisely as possible, the steps needed to find the largest number in a list of numbers. You can describe this algorithm in English or in “pseudocode”.
How is the list represented? What are the simplest individual steps needed?
Work in a small group. Try to write down one algorithm for your group (on paper).
In order to solve simple problems like the “find largest number” problem, a programming language needs:
The syntax for using variables, comparisons, and loops forms a main part of the first month of this course: “basic Java syntax”.
Kinds of languages: