Unit 5
Unit 6
Unit 7
Unit 8
100

What are 2 synonyms for Selection?

Selection is also called conditional or decision making.

100

Array

an ordered list of values

100

loop

A structure that allows repeated execution of a block of statements

100

Zoom

The SizeMode property that resizes to fit the PictureBox, but maintains its original ratio is used.

200

What are the 3 types of Selection?

Three types of selection are one way selection, two way selection, and multiple way selection.


200

Swapping

Three assignment statements that use a temporary value to replace two values with each other.

200

Definite loop

performs a task a predetermined number of times, also called a counted loop

200

Image property

The property of the PictureBox control contains the picture to be displayed:

300

What does program flow follow?

Program flow follows the exact sequence of listed program statements, unless directed otherwise by a Java control structure.

300

Two dimensional Array -

An array that has two dimensions (like rows and collums).

300

Indefinite loop

altered by user input, controlled by the user, executed any number of times

300

StretchImage

SizeMode property used to fit the PictureBox:

400

In one-way selection, when does the program flow branch off?

The value of the condition determines if the program flow will "branch off" from the main program sequence



400

Selection sort

A sort that finds the minimum, replaces it with the first number, moves the second number, finds the next minimum and replaces with the second number and so on.

400

Loop control variable

A variable that is altered and stored with a new value (ex. loopCount = loopCount + 1, the equal sign assigns a value to the variable on the left), the variable should be altered within the body of the loop

400

Dim frmDrawSurface As Graphics = Me.CreateGraphics

Correctly declares the Form as a drawing surface:

500

Explain Multiple-Way Selection.

Multiple selection is a commonly used control structure that simulates many situations in real life. The program flow encounters a group of conditions, one after the other.



500

Binary search

A search that finds the middle value, determines whether the value is lower or higher than the middle value then halves the direction that the value is in until it finds the target. (Array must be in order) (returns negative 1 if not found)

500

While loop

The loop-controlling Boolean expression is the first statement, executes a body of statements continually as long as the Boolean expression that controls entry into the loop continues to be true, consists of, the keyword while followed by a Boolean expression within parentheses followed by the body of the loop; can be a single statement or a block of statements surrounded by curly braces



500

SizeMode Property

Changes how the PictureBox image is displayed at run time:

M
e
n
u