题目内容

Conversation 2[听力原文]9-10W: What’s going on hereM: You mean, what’s happening Well, constable, I’m trying to get out of the window and Freud here is helping me.W: Why are you climbing through the window and not leaving by the front doorM: Well. you see I can’t find the key and I’m in a hurry. Come on, Freud, we’re wasting time.W: Just a minute you two. I don’t think you’re telling me the truth. This isn’t your house, is itM: No. it’s my brother’s. I’m staying with him for a while.W: Is he at homeM: I’m afraid not. He’s just in jail for house-breaking at the moment Who did the woman think the mall was()

A. The host of the house.
B. Freud’s friend.
C. A burglar.
D. The host’s brother.

查看答案
更多问题

在窗体上画一个命令按钮,然后编写如下事件过程: Private Sub CommAnd1_Click() For i=1 To 4 x=0 For j=1 To 3 x=j For k=1 To 2 x=x+6 Next k Next j Next i Print x End Sub 程序运行后,单击命令按钮,输出结果是______ 。

A. 7
B. 15
C. 157
D. 538

[听力原文]W: Can I help you. SirM: Yes, can you show me the way to Gate 9 for Flight 911 to Hong Kong I’m quite confused here. Which Flight will the man take()

A. Plight 811.
B. Flight 611.
C. Flight 711.
D. Flight 911.

有程序如下: Sub subP(b() As Integer) For i=1 To 4 b(i)=2*i Next i End Sub Private Sub Command1_Click() Dim a(1 To 4) As Integer a(1)=5 a(2)=6 a(3)=7 a(4)=8 subP a() For i=1 To 4 Print a(i) Next i End Sub运行上面程序,单击命令按钮,输出结果为______ 。

A. 2 4 6 8
B. 5 2 2 2
C. 10 12 14 16
D. 出错

以下程序用于求s=1+(1+2)+(1+2+3)+……(1+2+……100)的和,请补充完该程序。 Dim n As Integer Dim i As Integer Dim j As Long Dim s As Long n=100 j=0 s=0 For i=1 To 【12】 J= 【13】 s= 【14】 Next i Print s

答案查题题库