applet

A Java program, which is linked into an HTML document, then retrieved and executed using a Web browser.







































program

A series of instructions executed by the computer, one after another.







































syntax

The syntax of a computer language specifies how words and symbols can be combined into valid programs. Another word for syntax is grammar.







































semantics

The semantics of a properly formed program statement describes the meaning of the statement in plain English and how it will be interpreted by the computer when it is executed.







































comments

Most programming languages provide a mechanism that allows a programmer to embed documentation directly into a program. Comments provide additional information and explain special processing. All text within a comment is for the benefit of the human audience, and is ignored by the computer.







































debugging

Debugging is the removal errors, or bugs, from a computer program. It may take several attempts before all bugs are found and eradicated, and its even possible to introduce new bugs while trying to fix the old ones!







































hardware

The tangible components of a computer system, such as the keyboard, monitor, and circuit boards.







































software

Programs and data.







































Cherry Pie

Ingredients:

Directions:

  1. Heat oven to 400°F.
  2. Grease a 10" pie plate.
  3. Beat first 6 ingredients until smooth (about 15 seconds in blender or 1 minute with hand blender).
  4. Pour into pie plate. Spoon pie filling evenly over top.
  5. Bake for 25 minutes.
  6. Prepare streusel: cut butter into bisquick, brown sugar, and cinnamon until crumbly.
  7. At end of 25 minutes baking time, top pie with streusel.
  8. Bake until streusel is brown, about 10 minutes longer.
  9. Cool before serving; refrigerate any remaining pie.








































comments

Most programming languages provide a mechanism that allows a programmer to embed documentation directly into a program. Comments provide additional information and explain special processing. All text within a comment is for the benefit of the human audience, and is ignored by the computer.







































pseudocode

Pseudocode is an informal language that helps programmers develop algorithms for solving problems. The steps in a pseudocode program are expressed in everyday English. Such programs are not actually executed on computers. Each step in a pseudocode program must be translated into one or more steps in a computer language before the program can be executed.







































design

The plan for implementing a program, sometimes expressed using pseudocode.