Q1) All of the following are events except:
A. a macro running in response to a form button being clicked
B.changing the data in a cell
C.clicking on a control button
D.opening or closing an Excel workbook
Q2) What does the following code do when run inside a subprocedure: Range("A1").Value = Range("A2").Value
a. It gives an error.
b. It assigns cell A1 the value in cell A2.
c. It assigns cell A2 the value in cell A1.
d. It checks to see if the value of cell A1 is equal to that in A2.
Q3) What does the following code do when run inside a subprocedure: 10 = Range("A2").Value
a. It gives an error because "value" is not a property of range.
b. It assigns the value 10 to cell A2.
c. It creates 10 new cells each containing the value of cell A2.
d. It gives an error because you can't assign "10" the value in cell A2.