Question

2. (12 pts) For each of the following parts, create separate VBA subroutines that will do the following tasks. Name the subroutines "Problem2a", "Problem2b", "Problem2f". Make sure you are testing all

of the following scenarios/subs. All of these subs can be in the same module (e.g. "Module1"). a. Take the value in cell C3, square it, and output it in cell C4. b. Take the value in cell C3, square it, and output it in a message box. c. Ask the user for a number, square it, and output it in cell E3. d. Ask the user for a number, square it, and output it in a message box. e. Take the value in the active cell, square it, and output it in the cell that is two columns to the right and 2 rows down from the current active cell. f. Ask the user for a number, square it, and output it in a cell that is two columns to the right and 2 rows down from the current active cell.