第17题: [单项选择]A:Could you get me Extension 6459, please B:______ A. OK. My name is David Johnson, my telephone number is 4210888. B. Thank you. Could you put me through to 4210888 C. I’m afraid you can’t help me. Thank you any way. D. I’d like to confirm a room for next Saturday. 参考答案:D
第26题: [单项选择]下列程序段,在运行时最早输出的内容是( )。
a=2
C=1
AAA:
C=C + a
If c<10 Then
Print c
GoTo AAA
Else
Print"10以内的奇数显示完毕。"
End If
A. 3 B. 7 C. 9 D. 6 参考答案:A 答案解析:在本题中使用了If语句与GoTo语句。当c<10时,输出c,并继续运行;当大于10时,显示“10以内的奇数显示完毕。”并结束程序。开始时,a=2,c=1,执行语句c=c+a后c为3,小于10,故输出c