第8题: [单项选择]Questions 23 to 25 are based on the conversation you have just heard. A. He will be singing traditional English songs. B. He will be talking to his professor. C. He will be on his way to an English club. D. He will be practising his listening skills. 参考答案:B 答案解析:[听力原文] What will the man be doing at 8:45 in the evening [答案详解] 推理判断题【考频:13】。男士说自己在8:30分时和教授约
第25题: [单项选择]以下程序的输出结果为( )。
Dim i,c(10),p(3)
k=5
For i=0 To 10
c(i) =i
Next i
For i=0 To 2
p(i) = c(i * (i + 1))
Next i
For i=0 To 2
k=k+p(i) * 2
Next i
Print k
A. 20 B. 21 C. 56 D. 32 参考答案:B 答案解析:第一个循环对数组c( )进行赋值,第二个循环对数组p( )进行赋值,第三个循环对k进行累加,k的初值等于5,第一次循环k=k+p(0)*2=5……,第三次循环k=k+p(2)*2=21并输出。