Programming Basics - Operations Flashcards
What does the DIV operator do?
returns the whole number part of a division
What does the DIV operator do?
returns the whole number part of a division
What does the MOD operator do?
Gives the remainder
What is addition written as in terms of operations?
+
What is Subtraction written as in terms of operations?
-
What is Multiplication written as in terms of operations?
*
What is Division written as in terms of operations?
/
What is exponentiation written as in terms of operations?
**
What is quotient written as in terms of operations?
DIV
What is Remainder written as in terms of operations?
MOD
What is the comparison operation for “is equal to”?
==
What is the comparison operation for “Is not equal to”?
!=
What is the comparison operation for “is less than”?
What is the comparison operation for “is greater than”?
>
What is the comparison operation for “is less than or equal to”?
<=