[Solved]6 Examine Following Code Value Variable Dim B Double B 50 10 B Q37292469
6) Examine the following code. What will be the value of thevariable A?
Dim A, B As Double
B = 50
A = 10
If B <= 0 Then
If B < 25 Then
A = 0
Else
A = B – A
End If
Else
A = A + B
End If
Answer:
Expert Answer
Answer to 6) Examine the following code. What will be the value of the variable A? Dim A, B As Double B = 50 A = 10 If B … . . .
OR

