The Best Crossword Puzzle Maker Online
Powered by BrightSprout
Save Status:
or to save your progress. The page will not refresh.
Controls:
SPACEBAR SWITCHES TYPING DIRECTION
Edit a Copy:
Make Your Own:
Crossword Word Search Worksheet
Rate This Puzzle:
Log in or sign up to rate this puzzle.

C# Vocabulary - Chapter 5

Across
When code execution moves down to the last possible statement.
Used to exit a Switch Statement. Prevents "Fall Through".
Used to jump to the beginning of the next loop/iteration.
A Loop the executes until a condition is met.
Instructions or statements that are run repeatedly.
These allow you to compare two operands.
Allows for a variable to be tested against multiple conditions.
The primary logical statement of all programming languages. Allows for different actions based on a Boolean Expression.
Existing one within the other. As with two if statements.
Down
A loop that executes until a condition is met, but better organized. Uses an incrementor or decrementer.
Compares two operands and returns a Boolean Value.
A Loop that executes forever.
Defined by curly braces, a declared variable is only usable within those curly braces.
These allow you to create a Boolean expression from two or more Boolean Expressions.