Correct the following statements Dim itSize As Integer Dim d
Correct the following statements: Dim itSize As Integer Dim dblDiscountRate As Dbl Constant cstrCollege As String s = \"CVCC\" Dim str LastName As Number strLastName = \'J Starks\' 2.0 * Pay decHourlyPay = decOverTimePayRate
Solution
a) Dim itSize As Integer
b) Dim dblDiscountRate As Double
c) Const cstrCollege As String = \"CVCC\"
d) Dim strLastName As Integer
e) Dim strLastName As String = \"J Starks\"
f) decOverTimePayRate = 2.0 * decHourlyPay
