• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/8

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

8 Cards in this Set

  • Front
  • Back
All applications can be written in terms of three types of control structures ____________ , ___________ and ___________.
sequence
selection
repetition
The _____________ statement is used to execute one action when a condition is true and another when that condition is false.
if else
Repeating a set of instructions a specific number of times is called ____________ repetition.
counter-controlled (or definite)
When it is not known in advance how many times a set of statements will be repeated, a(n) ______________ value can be used to terminate the repetition.
sentinel, signal, flag or dummy
The ____________ structure is built into C#—by default, statements execute in the order they appear.
sequence
Instance variables of type int are given the value by ___________ default.
0 (zero)
C# is a ____________ language—it requires all variables to have a type.
strongly typed
If the increment operator is ____________ to a variable, the variable is incremented by 1 first, then its new value is used in the expression.
prefixed