选择题   在标准模块“模块1”声明区中定义了变量x和变量y,如下所示,则变量x和变量y的作用范围分别是______。
    Dim x As Integer
    Public y As Integer
    Sub demoVar()
    x=3
    y=5
    Debug. Print x&' '&y
    End Sub
 
【正确答案】 C
【答案解析】