Data Types
Data Types
NOTE:
Line 12 explicitly cast the Quiz_1 and Quiz_2 from double to int.
This is done manually by the programmer noticing that integer is
lower than double which means there is a loss of data. This what
they call downward cast (casting from value occupying more
memory to value occupying less memory).
CASTING