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

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;

22 Cards in this Set

  • Front
  • Back

What does this mean "=="

equal to

What does this mean "a>b"
A is greater than B

What does this mean "a<b"

B is greater than A

What does this mean "a>=b"

A is greater than or equal to B

What does this mean "a<=b"

A is less than or equal to B

What does this mean "/"

Divide

What does this mean "*"

Multiply

What does this mean "+"

Add

What does this mean "-"

Minus

What is a Condition?


A condition is a if or if else statement or a for loop or a while loop.


bool condition = true;

if (condition)
{
Console.WriteLine("The variable is set to true.");
}
else
{
Console.WriteLine("The variable is set to false.");
}

What is a Sequence?

In a sequence structure, an action, or event, leads to the next ordered action in a predetermined order. The sequence can contain any number of actions, but no actions can be skipped in the sequence. The program, when run, must perform each action in order with no possibility of skipping an action or branching off to another action.

What is a Loop


loops are something that repeat a command=d till a objective is reached e.g.


this code will count to the numbe that it wants to reach, 5.


class ForLoopTest
{
static void Main()
{
for (int i = 1; i <= 5; i++)
{
Console.WriteLine(i);
}
}
}

What is a Iteration?

the repetition of a process

What is a variable?

A variable is something that stores data

What is a int?

a variable that stores numbers, only whole numbers, no decimals


What is a string?

a variable that stores letter sand symbols.


What is a bool?

a variable that can store true or false


What is a double?

a variable like a int but can also store decimals

input?

Whatever goes into the computer. Input can take a variety of forms, from commands you enter from the keyboard to data from another computer or device.

output?

Anything that comes out of a computer. Output can be meaningful information or gibberish, and it can appear in a variety of forms.

processing?

Refers to a class of programs that organize and manipulate data, usually large amounts of numeric data

What does this mean "++"

Increment by one