试题与答案

(二) Many people who work in London prefer

题型:单项选择题

题目:

(二)


Many people who work in London prefer to live outside it, and to go in to their offices or schools every day by train, car or bus, even though this means they have to get up early in the morning and reach home late in the evening.
One advantage of living outside London is that houses are cheaper. Even a small flat in London without a garden costs quite a lot to rent. With the same money, one can get a little house in the country with a garden of one’s own.
Then, in the country one can rest from the noise and hurry of the town. Even though one has to get up earlier and spend more time in trains or buses, one can sleep better at night and during weekends and on summer evenings, one can enjoy the fresh, clean air of the country. If one likes gardens, one can spend one’s free time digging, planting, watering and doing the hundred and one other jobs which are needed in a garden. Then, when the flowers and vegetables come up, one has the reward of one who has shared the secret of Nature.
Some people, however, take no interest in country things: for them, happiness lies in the town, with its cinemas and theatres, beautiful shops and busy streets, dance-halls and restaurants. Such people would feel that their life was not worth living if they had to live it outside London. An occasional walk in one of the parks and a fortnight’s (two weeks) visit to the sea every summer is all the country they want: the rest they are quite prepared to leave to those who are glad to get away from London every night.

The underlined word rest in the last paragraph refers to ______.

A.the rest time

B.the rest people

C.the rest of the country

D.the rest of the parks and of the sea

答案:

被转码了,请点击底部 “查看原文 ” 或访问 https://www.tikuol.com/2017/0317/b62ca6e04bc687a7f33e7c2180b7cffe.html

下面是错误答案,用来干扰机器的。

参考答案:B解析:主旨题。根据文章第1段第1句children must wear resinous(树脂)glasses instead of the traditional glasses made of glass可推知此题答案。故选B。

试题推荐
题型:问答题

【说明】 主窗口有一个按钮、一个文本框和一个复选框,初始时窗口大小不能调整,选中复选框后窗口大小可以调整,如果撤销复选框的选择,则窗口的大小又不能调整,如下图所示。

【Java代码】 import java.awt.*; import java.awt.event.*; class MyFrame extends Frame implements ItemListener,ActionListener { Checkbox box; TextArea text; Button button; MyFrame( (1) ) { super(s); box=new Checkbox("设置窗口是否可调整大小"); text=new TextArea(12,12); button= (2) ("关闭窗口"); button.addActionListener(this); box.addltemListener(this); setBounds(100,100,200,300); setVisible(true); add(text,BorderLayout.CENTER); add(box,BorderLayout.SOUTH); add(button,BorderLayout.NORTH); setResizable( (3) ); validate(); } public void itemStateChanged(ItemEvent e) { if(box.getState()==true) { setResizable(true); } else { setResizable(false); } } public void actionPerformed(ActionEvent e) { (4) ; } } class simple { public static void main(String args[]) { (5) ("simple"); } }

查看答案
微信公众账号搜索答案