a) How would I write a statement that calls the module, passing 12 as an argument?
Module showValue (Integer quantity)
b) By looking at the statement below, when this call executes, what values will be stored in a, b, and c?
Module myModule (Integer a, Integer b, Integer c)
Call myModule (3, 2, 1)