Q. What is wrong with the following if-else structure?
Code:
If intQuantity > 5 Then dblDiscountRate = .1 Else dblDiscountRate = .05 End If
β
Correct Answer: (A)
No error
If intQuantity > 5 Then dblDiscountRate = .1 Else dblDiscountRate = .05 End If
You must be Logged in to update hint/solution