• 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
A(n) _____________ begins the body of every method, and a(n) ______________ ends the body of every method.
left brace ({)
right brace (})
Most statements end with a(n) _____________.
semicolon ( ; )
The ____________ statement is used to make decisions.
if
______________ begins a single-line comment.
//
_______________, __________________and _______________are called whitespace characters. Newline characters are also considered whitespace characters.
Blank lines
space characters
tab characters
_____________ are reserved for use by C#.
Keywords
C# applications begin execution at method __________ .
Main
Methods _____________ and _____________ display information in the console window.
Console.WriteLine
Console.Write
_______________ are used to document an application and improve its readability.
Comments
A decision can be made in a C# application with a(n) _____________.
if statement
Calculations are normally performed by ___________ statements.
assignment
The arithmetic operators with the same precedence as multiplication are ____________ and _______________.
division /
remainder %
When parentheses in an arithmetic expression are nested, the _____________ set of parentheses is evaluated first.
innermost
A location in the computer’s memory that may contain different values at various times throughout the execution of an application is called a(n) _____________.
variable