Text 3Investment in the public sector, such as electricity, irrigation, public services and transport (excluding vehicles, ships and planes) increased by about 10%, although the emphasis moved to the transport and away from the other sectors mentioned. Tr

题目

Text 3

Investment in the public sector, such as electricity, irrigation, public services and transport (excluding vehicles, ships and planes) increased by about 10%, although the emphasis moved to the transport and away from the other sectors mentioned. Trade and services recorded a 16%~17% investment growth, including a 30% increase in investment in business premises. Industrial investment is estimated to have risen by 8%. Although the share of agriculture in total gross in vestment in the economy continued to decline, investment grew 9% in absolute terms, largely spurred on by a 23% expansion of investment in agricultural equipment. Housing construction had 12% more invested in it in 1964, not so much owing to increased demand, as to fears of new taxes and limitation of building.

Total consumption in real terms rose by close on 11% during 1964, and per capital personal consumption by under 7% ,as in 1963. The undesirable trend towards a rapid rise in consumption, evident in previous years, remained unaltered. Since at current prices consumption rose by 16% and disposable income by 13% ,there was evidently a fall in the rate of saving in the private sector of the economy. Once again consumption patterns indicated a swift advance in the standard of living. Expenditure on food declined in significance, although consumption of fruit increased.

Spending on furniture and household equipment, health, education and recreation continued to increase. The greatest proof of altered living standards was the rapid expansion of expenditure on transport (including private cars) and personal services of all kinds, which occurred during 1964. The progressive wealth of large sectors of the public was demonstrated by the changing composition of durable goods purchased. Saturation point was rapidly being approached for items such as the first household radio, gas cookers, and electric, refrigerators, whereas increasing purchases of automobiles and television sets were registered.

31. the author thinks that the trend towards a rapid rise in consumption was "undesirable" because ______.

A) people saved less

B) people were wealthy

C) people consumed less

D) expenditures on luxuries increased


相似考题
参考答案和解析
正确答案:A
答案:A
[试题分析] 事实分析题。
[详细解答] 实际上提问的是第二段对第一方面消费趋向的分析。根据第二段第三句中there was evidently a fall in the rate of saving in the private sector of the economy.因此,答案应该是A。
更多“Text 3Investment in the public sector, such as electricity, irrigation, public services an ”相关问题
  • 第1题:

    如果你的计算机已接入Internet网,用户名为ASD,ISP邮件服务器的主机名为public.ty.sx.cn,则你的E-mail地址为( )。

    A.ASD.public.ty.sx.cn

    B.ASD.public@.ty.sx.cn

    C.ASD@public.ty.sx.cn

    D.public.ty.sx.cn


    正确答案:C


  • 第2题:

    下面程序的输出结果是()。include using namespace std;class A {public:A( ) {cout<<

    下面程序的输出结果是( )。 #include <iostream> using namespace std; class A { public: A( ) {cout<<"A";} } class B { public: B() {coat<<"B" ;} } class C: public A { public: B b; C() {cout<<"C";} } void mian(){ C c; }

    A.CBA

    B.ABC

    C.ACB

    D.BCA


    正确答案:B
    解析:先执行基类A构造函数输出A,调用类B的构造函数输出B,调用本身构造函数输出C。

  • 第3题:

    有如下程序:includeusing namespace std;class A {public:A(){cout<<"A";}};classB{p

    有如下程序: #include<iostream> using namespace std; class A { public: A(){cout<<"A";} }; classB{public:B(){cout<<"B";}} classC:public A{ B b; public: C(){cout<<"C";} }; int main(){ C obj; return 0;} 执行后的输出结果是( )。

    A.CBA

    B.BAC

    C.ACB

    D.ABC


    正确答案:D
    解析:此题考查的是类的继承和派生。系统首先要通过派生类的构造函数调用基类的构造函数,对基类成员初始化:然后对派生类中的新增成员初始化。

  • 第4题:

    有如下程序:include using namespace std;class A {public: A() {cout<<"A";}};class

    有如下程序: #include <iostream> using namespace std; class A { public: A() {cout<<"A";} }; class B {public:B() {cout<<"B";}}; class C: public A { Bb; public: C() {cout<<"C";} }; int main() {C obj;return 0;}执行后的输出结果是 ______。

    A.CBA

    B.BAC

    C.ACB

    D.ABC


    正确答案:D
    解析:在构造派生类对象时,基类的构造函数要优于派生类的构造函数先执行,所以D为正确答案。

  • 第5题:

    有如下程序:includeusing namespace std;class A{public: A(){cout<<"A";}};classB{p

    有如下程序: #include<iostream> using namespace std; class A{ public: A(){cout<<"A";} }; classB{public:B().{cout<<"B";}} classC:public A{ B b; public: C(){cout<<"C";} }; int main (){ C obj; return 0;} 执行后的输出结果是

    A.CBA

    B.BAC

    C.ACB

    D.ABC


    正确答案:D
    解析:本题考核类的继承与派生。派生类构造函数执行的一般次序如下:首先调用基类构造函数,调用顺序按照它们被继承时说明的顺序。然后调用子对象的构造函数,调用顺序按照它们在类中的说明顺序。最后是派生类构造函数中的内容。题中,类A是基类,类C是基类A的派生类,类B的对象b是类C的私有成员。所以最后的输出为ABC。

  • 第6题:

    在jdk中(也就是直接在MS-DOS界面中编译和运行Java源程序),如果源程序中有public类,()。

    A.可以有多个public类

    B.只能有一个public类

    C.public类必须是包含main方法的主类

    D.所有类必须都是public类


    只能有一个public类