What does + do?
Adds two variables
What does - do?
Subtracts two variables
What does * do?
Multiplies 2 variables
What does / do?
Divides 2 variables
What does % (MOD) do?
Outputs the remainder of the division
What does // (DIV) do?
Divides 2 variables but only shows the integer value (integer division)
What does == do?
Shows 2 strings are equal to each other
What does != do?
Shows 2 strings are not equal to each other
The 3 basic programming constructs
What is a variable
A named memory location which stores a value that may change during the execution of the program
What is a constant
A value that cannot change when the program is run and is assigned when the program is made
What is assignment
Giving a variable or constant a value. This is done by an “=” sign
What is an identifier and rules that an identifier must follow
Advantages of constants
What is a case statement
Two forms of iteration and when are they needed
The 3 types of statements fall into these 2 categories
Difference between a do…until loop and a while loop
What coomand must be used to stop a while loop
What is nesting, why is it needed and different types of it
What is casting and why is it needed