下列程序的输出结果是______。
Sub Prin()
Dim B As String
A=1
B=A & Space(4)& A
Print A
Print Trim(B)End Sub
第1题:
A.Source,VolumeControl,Speaker,Amp
B.Source,Amp,VolumeControl,Speaker
C.Amp,Source,VolumeControl,Speaker
D.Speaker,Amp,VolumeControl,Source
第2题:
以下程序的输出结果是( )。

A)1
B)3
C)2
D)4
第3题:
【填空题】听歌曲填空,并注意填空部分的连读。每空一词。   I lie(1)________ at night see things in black(2)_______ white I’ve only(3)________ you inside my mind You know you have(4)________ me blind I(5)_________ awake and pray (6)________ you will look my way
第4题:
某文本型字段的值只能是字母且不允许超过4个,则可将该字段的输入掩码属性定义为( )。
A.AAAA
B.&;&;&;&;
C.LLLL
D.####
第5题:
下列程序运行结果是: a=3 b=5 if a>b: a,b=b,a print ("从小到大输出:") print (a,b)
A.3,5
B.3 5
C.5,3
D.5 3