Examine the following code. What will be the value of thevariable C?
Dim A as Integer, C as Integer
A = 5 C = 10
If (C-A) > 0 Then
C = C* A
If C < 25 Then
C = 10
Else
C = 100
End If
Else
C = C + 15
End If
Answer:
Answer
the value of the variable C = 100