有如下过程代码: Sub var_dim( ) static numa As Integer Dim numb As Integer numa=numa+2. numb=numb+1 print numa;mub End Sub 连续3次调剧var_dim过程,第3次调用时的输出是( )。
A.2 1
B.2 3
C.6 1
D.6 3
第1题:
有如下过程代码:
Sub var_dim()
Static numa AS Integer
Dim numb As Integer
numa=Duma+2
numb=numb+1
print numa;mumb
End Sub
连续3次调用vardim过程,第3次调用时的输出是
A.2 1
B.2 3
C.6 1
D.6 3
第2题:
设有如下语句: Dim a,b As Integer c="VisualBasic" d=#7/20/2005# 以下关于这段代码的叙述中,错误的是( )。
A.a被定义为Integer类型变量
B.b被定义为Integer类型变量
C.c中的数据是字符串
D.d中的数据是日期类型
第3题:
理解程序的功能,若输入126和2,则程序的运行结果是哪一个选项? def foo(num,base): if(num >= base): foo(num/base , base) print num%base, numA = input() numB = input() foo(numA,numB)
A.113
B.1 1 1 1 1 1 0
C.128
D.1 1 1 1 1 1 1
第4题:
A.type Integer intfunc (a Integer) Add(b Integer) Integer { return a + b}
B.type Integer intfunc (a Integer) Add(b *Integer) Integer { return a + *b}
C.type Integer intfunc (a *Integer) Add(b Integer) Integer { return *a + b}
D.type Integer intfunc (a *Integer) Add(b *Integer) Integer { return *a + *b}
第5题: