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

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;

17 Cards in this Set

  • Front
  • Back

Term given to a method or set of ordered and finite steps for solving problems.

Algorithm

When algorithms get too large or complex, what may be used instead?

Decision Tables

A set of data and methods that are defined between a set of curly braces are known as a ________? (C# is made up of these)

Class

Every C# statement must end with a ______?

semicolon (;)

What is the special method that serves as the entry point to a program?

Main

_____ provides temporary storage during the execution of a program

Variables

Data fields or variables whose value's cannot be changed are called ______________?

Constants

What defines the size of the memory needed and what operations can be performed on the data?

Data Types

what is the data type for True or False?

Bool

What is the storage size of data type int? what about long?

int = 4 bytes


long = 8 bytes

The programming technique that causes a method do call itself in order to compute a result?

Recursion

An ________ is an error condition that occurs during the execution of a C# program

Exception

Catch and Try blocks are ways of handling ?

Exceptions

Name the four different control structures in C#.

WHILE LOOP


DO-WHILE LOOP


FOR LOOP


FOREACH LOOP

what can be used to to simplify a complex combination of If-Else statements

Switch

What is the loop that combines the three elements of iteration into more readable code?

For loop

What is the loop that is useful for iterating through the elements of a collection?

Foreach loop