问题 单项选择题

在窗体上添加一个文本框,名为Textl,然后编写如下的Load事件过程,则程序的运行结果是
Private Sub Form_Load()
Text1.Text=" "
Text1.Setfocus
t=1
For k=10 To 6 Step -2
t=t(k
Next k
Text1.Text =t
End Sub

A.在文本框中显示120

B.文本框仍为空

C.在文本框中显示480

D.出错

答案

参考答案:D

解析: 本题表面在考查For循环控制语句的使用,但解题的关键是理解Text文本框SetFocus方法的正确使用,在触发窗体Form的 Load事件时,使用SetFocus将发生冲突,在Visual Basic上调试本题的程序将显示“错误的过程调用或函数”提示。本题选择D项。如果删除SetFocus方法的使用,文本框中将显示480。如果用控制按钮的 Click事件触发该段事件过程,文本框也会得到480的答案,对此,考生不妨自己上机一试。

完形填空

阅读下面短文并回答问题,将答案写到相应的位置上(请注意问题后的词数要求)。

Stamp collectors usually collect stamps only from certain countries or regions. The traditional method of stamp collecting is to organize stamp collection according to the issue dates.

Of course, there are many other methods of collecting stamps. You can collect stamps relating to a particular theme. For example, sport lovers may choose the Olympic theme. They try their best to find Olympic stamps issued by various parts of the world every four years. Some of them may want to concentrate on even more specific sport activities like ball games, gymnasium, swimming, etc.

If you like astronomy, you may be keen on collecting stamps describing the stars, planets, spacecraft, spacemen, etc. once you have fixed the topic, you no longer need to bother about stamps other than the theme you selected. Then, you can put all your effort to collect the stamps around it.

China issues zodiac animal stamps (十二生肖邮票) every year to celebrate the Lunar New Year. Zodiac animal stamps are extremely popular and a lot of collectors wait patiently for 12 years to collect a full set of them. Hong Kong’s Lunar New Year special stamp series began in 2000 with the Year of Dragon and the twelfth and final set was issued in 2011, the Year of Rabbit. Recently some Western countries have issued zodiac animal stamps, which attract a lot of attention as well.

You may choose any theme you like. However, you should bear in mind an essential point. The topic you choose should not be too narrow. Otherwise, it is very difficult to accumulate stamps around the topic. You will be depressed and even lose your interest in collecting stamps.

Collecting stamps with these is especially popular among teenagers because there is a wide range of choices for them. The main challenge is how you organize and expand your collection around your theme.

小题1:What is the main idea of the passage? (within 5 words)

小题2:What should you stick to when you collect stamps with themes? (within 8 words)

小题3:What should you do if you want to collect a full set of zodiac animal stamps? (within 7 words)

小题4:Which year comes ahead of the Dragon Year according to China’s zodiac animal? (within 4 words)

小题5:Why is it popular among teenagers by collecting stamps with various themes? (within 10 words)

单项选择题