Section A
Directions: This section is to test your ability to give proper answers to questions. There are 5 recorded questions in it. After each question, there is a pause. The questions will be spoken two times. When you hear a question, you should decide on the correct answer from the 4 choices marked A, B, C and D.
(1)
A. I like the weather in Shenyang.
B. Well, it is cold in winter and hot in summer.
C. It is the nicest season of the year.
D. It is going to snow tonight.
查看答案
A.She doesn't know how to.B.She doesn't want to.C.She has to do the dishes.D.It's raini
A. She doesn't know how to.
B. She doesn't want to.
C. She has to do the dishes.
D. It's raining outside.
A.Because it stopped raining.B.Because she already has an umbrella.C.Because she is sta
A. Because it stopped raining.
Because she already has an umbrella.
C. Because she is staying home.
D. Because she has a raincoat.
Section B
Directions: This section is to test your ability to understand short dialogues. There are 5 recorded dialogues in it. After each dialogue, there is a recorded question. The dialogues and questions will be spoken two times. When you hear a question, you should decide on the correct answer from the 4 choices marked A, B, C and D.
(6)
A. She cannot read.
B. Nobody can tell.
C. She has no watch.
D. She is too sorry.
在窗体上画一个命令按钮Command1和两个文本框,名称分别为Text 1和 Text 2 Text 2。编写如下两个事件过程: Dim str As String, strl As String Private Sub form_load() TextText = " " TextText = " " TextEnabled = False TextEnabled = False End Sub Private Sub Form. KeyPress(KeyAscii As Integer) str= str&Chr(KeyAscii) End Sub Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) str1 = strl&Chr(KeyCode) End Sub Private Sub Command1_Click() TextText =str TextText = str1 str= " " str1= " " End Sub 当在设计阶段把窗体KeyPreview属性设置为True时,程序运行过程中,在键盘上输入小写字母abc,然后单击命令按钮,则文本框Text1中显示的内容为 ______ 。
A. abc
B. 不显示任何信息
C. ABC
D. 出错