KRHS Internet Lesson

Teacher Name:Mr. Rung                          Date of Lesson: December

Course Name: C++                    Lesson Name: Lrn. Chk. 8.3

Student Name

Password


Objective
Complete the matching column in the workbook


Primary Focus
Complete the section below

Site Links
Course Home Page

Additional Resources

Site Links


control expression
A a program where events such as the click of a mouse or a menu selection drives the flow of a program
do while loop
B a loop within a loop
event driven
C an iteration structure that repeats a statement or group of statements as long as a control expression is true
event loop
D a single loop or pass through a group of statements
for loop
E a loop in an event driven program which constantly iterates waiting for an event to occur
infinite loop
F the expression in a for loop that changes the counter variable
initializing expression
G programming structures that repeat a group of statements one or more times
iteration
H an expression that provides for a decision to be made in an if statement or to end a loop
iteration structures
I an expression that initializes the counter variable of a for loop
nested loop
J an iteration structure that repeats a statement or group of statements as long as a control expression is true at the end of the loop
parameter
K the variable that receives the value or any other identifier in the parentheses of the function declaration
step expression
L an iteration structure that repeats one or more statements a specified number of times
while loop
M an iteration structure in which iterations continue indefinitely