Do the Even questions from section 7.3.7.

(It wouldn't hurt if you studied the answers to the odd questions as well.)

In addition, Translate the following C/C++ expression to Assembly:

  1. n = x % y;
  2. ax = arr[count % max];
  3. n += x / 2;
  4. n = x >> 2; (Hint: see also sections 7.2-3.)
  5. n <<= 3; (Hint: see also sections 7.2-3.)
  6. x = (4 + y / z * 6 - h % 7) * 3;

This assignment is Level 2.5.