• 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/14

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;

14 Cards in this Set

  • Front
  • Back
statement
A command that causes C# to do something.
declaration statement
A statement that creates a variable used to store data.
expression statement
A statement that performs calculations.
if-then statement
A statement that executes other statements, based on particular conditions being met.
for, while or do statement
A statement that executes a group of statements one or more times.
white space
One or more consecutive spaces, tabs or line breaks.
block
A group of one or more statements that are enclosed in braces, beginning with a opening brace ({) and ending with a closing brace (}).
identifier
A word that you make up to refer to a C# programming element by name.
comment
Text that provides explanations of your code.
single-line comment
A comment that begins with the sequence // and ends at the end of the line.
delimited comment
A comment that spans multiple lines so it begins with the sequence /* and ends with the sequence */.
class
Code that defines the behavior of an object.
object
An instance of a class.
instance variable
A variable that any method in a class can access.