VARIABLE EXERCISES 1. Declare variables to store the following data: a. Good morning, Miss Moravan b. 3.141596908... c. 42 2. Declare variables to store the following ideas: a. Interest rate b. Days of sunshine this year c. Your favorite line of Shakespeare 3. Find the error in the following code: int numOranges = 1; NumOranges = 2; 4. Trace the memory for the following code: int numApples = 12; int NumApples = 14; numApples = 13; 5. Write code to store in z the sum of: the product of 5 and 4, and the difference between 8 and 6.