Bummer! This is just a preview. You need to be signed in with an account to view the entire instruction.
Well done!
You have completed (UPI) Chapter 5: Assignment, Arithmetic, Relational, and Logical Operations!
Instruction
Integer Division and Modulus
In integer division and modulus, the dividend
is divided by the divisor
into an integer quotient and a remainder. The integer quotient operation is referred to as integer division
, and the integer remainder operation is the modulus
.
Division, when involving integer operands, results in an integer quotient with no fractional part (integer division).
Example:
11 / 4
The ...