Module 3. Standard Operations and Functions Exercise Answers

1.  Floats the integer and performs floating point division.

2.
   mass = mass * force;

3.
   peanut == butter

4.
(((year % 4) == 0) && (((year % 100) != 0) || ((year % 400) == 0)))