问题 阅读理解

Walking in the street in the USA or the UK, you can often hear people talking about the weather. "Lovely day, isn’t it?" "It’s cold, isn’t it?" and so ox

Americans and English people like talking about the weather. This makes lots of Chinese puzzled(困惑). But they talk about the weather not only because the weather there changes a lot, but also they do not like to talk with others about private things like age, family and income. Stay with strangers, people all like talking about the weather, then they can talk about other things naturally(自然). They think if you like spring, you have a warm heart; if you like summer, you have a great will; if you like autumn, you have abundant feeling(丰富的感情);if you like winter, you have a vast mind(广阔的胸怀).

小题1:What is the Chinese meaning of ‘private’?

A.私人的

B.公共的

C.未知的

D.不感兴趣的小题2:Why do Americans and English people like talking about the weather?

A.Because the weather there is changeable.

B.Because they do not like to talk about private things.

C.Because then they can talk about other things naturally.

D.Both A and B小题3:Which is NOT true?

A.If you like spring, you like to help others.

B.A lot of Chinese don’t know why the English people like talking about the weather.

C.The weather often changes in UK,

D.English people will talk about their ages with the strangers.

答案

小题1:A

小题2:D

小题3:D

小题1:从第二段第三行可以看到美国人和英国人不喜欢谈论年龄,家庭和收入,这些都属于个人的隐私,也就是私人的事情,所以private是私人的意思,故本题选A。

小题2:从第二段第二行我们可以看到美国人和英国人喜欢谈论天气的原因不仅是由于当地的天气易变,而且是因为他们不喜欢谈论私人的事情,故选D。

小题3:本文的最后三行提到四季,如果你喜欢春天,那么你将会有一个热心肠,乐于帮助别人,在第二段第二行提到中国人对英美国家的人喜欢谈论天气感到困惑,不知是什么原因,在英国的天气易变,英国人不喜欢谈论他们的私人问题,如年龄和收入等,故本题不正确的为D项。

单项选择题
问答题

综合应用题 使用VC6打开考生文件夹下的工程kt15_3。此工程包含一个kt15_3.cpp,其中定义了类A、A1和A2,其中A1类由A类公有派生,A2类由A1类公有派生。上述三个类的定义并不完整,请按要求完成下列操作,将程序补充完整。 (1)定义类A的构造函数,该构造函数有一个整型的参数x,在构造函数中请将x赋值给数据成员a。请在注释“//**1**”之后添加适当的语句。 (2)定义类A1的构造函数,该构造函数有两个整型参数x和y,在构造函数中请将x赋值给数据成员b,将y作为基类A构造函数的参数值传入。请在注释“//**2**”后添加适当的语句。 (3)定义类A2的构造函数,该构造函数有三个整型的参数x,y和z,在构造函数中请将x赋值给数据成员c,将y和z分别赋值给基类A1构造函数的参数x和y。请在注释“//**3**”之后添加适当的语句。 (4)完成类A2的成员函数show的定义,该函数调用基类成员函数,输出基类数据成员a和b及类A2自身的数据成员c的值,上述三个值在输出时以空格隔开。请在注释“//**4**”之后添加适当的语句。 注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。 程序输出结果如下: 9 6 962 源程序文件kt15_3.cpp清单如下: #include classA { inta; public: //**1** intgeta(){returna;} }; classA1:publicA { intb; public: //**2** intgetb(){returnb;} }; classA2:publicA1 { intc; public: //**3** voidshow() { //**4** } }; voidmain() { A2a(2,6,9); cout<