Question: When Sub Main below is executed, what will be displayed by the two message box? Sub Main() Dim X As Short = 10 Dim Y
When Sub Main below is executed, what will be displayed by the two message box?
Sub Main() Dim X As Short = 10 Dim Y As Short = 20
Call SomeWeirdMath(X,Y)
MsgBox (X) MsgBox (Y)
End Sub
Sub SomeWeirdMath(ByRef P As Short, ByVal Q As Short)
P = P*Q
Q = Q*P
End Sub
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
