选择题   在窗体上有一个命令按钮Commandl,编写事件代码如下:
    Private Sub Commandl_Click()
    Dim x As Integer,  y As Integer
    x=12:  y=32
    Call Proc(x,y)
    Debug.print x;  y
    End Sub
    Public Sub Proc(n As Integer,ByVal m As Integer)
    n=n Mod 10
    m=m Mod 10
    End Sub
    打开窗体运行后,单击命令按钮,立即窗口上输出的结果是______。
 
【正确答案】 A
【答案解析】题目中的Proc过程计算n的个位数和m的个位数。但是n是传地址的,m是传值的,传值过程中y的值并没有改变,依然是32,但是x的值变为2。