Text 3 In recent years, railroads have been combining with each other, mergingsintossuper systems, causing heightened concerns about monopoly. As recently as 1995,the top four railroads accounted for under 70 percent of the total ton-miles moved by rails.

题目

Text 3 In recent years, railroads have been combining with each other, mergingsintossuper systems, causing heightened concerns about monopoly. As recently as 1995,the top four railroads accounted for under 70 percent of the total ton-miles moved by rails. Next year, after a series of mergers is completed, just four railroads will control well over 90 percent of all the freight moved by major rail carriers.

Supporters of the new super systems argue that these mergers will allow for substantial cost reductions and better coordinated service. Any threat of monopoly, they argue, is removed by fierce competition from trucks. But many shippers complain that for heavy bulk commodities traveling long distances, such as coal, chemicals, and grain, trucking is too costly and the railroads therefore have them by the throat.

The vast consolidation within the rail industry means that most shippers are served by only one rail company. Railroads typically charge such“captive”shippers 20 to 30 percent more than they do when another railroad is competing for the business. Shippers who feel they are being overcharged have the right to appeal to the federal government's Surface Transportation Board for rate relief, but the process is expensive, time consuming, and will work only in truly extreme cases. Railroads justify rate discrimination against captive shippers on the grounds that in the long run it reduces everyone's cost. If railroads charged all customers the same average rate, they argue, shippers who have the option of switching to trucks or other forms of transportation would do so, leaving remaining customers to shoulder the cost of keeping up the line. It's theory to which many economists subscribe, but in practice it often leaves railroads in the position of determining which companies will flourish and which will fail.“Do we really want railroads to be the arbiters of who wins and who loses in the marketplace?”asks Martin Bercovici, a Washington lawyer who frequently represents shipper. Many captive shippers also worry they will soon be his with a round of huge rate increases. The railroad industry as a whole, despite its brightening fortuning fortunes. still does not earn enough to cover the cost of the capital it must invest to keep up with its surging traffic. Yet railroads continue to borrow billions to acquire one another, with Wall Street cheering them on. Consider the .2 billion bid by Norfolk Southern and CSX to acquire Conrail this year. Conrail's net railway operating income in 1996 was just million, less than half of the carrying costs of the transaction. Who's going to pay for the rest of the bill? Many captive shippers fear that they will, as Norfolk Southern and CSX increase their grip on the market.

第51题:According to those who support mergers railway monopoly is unlikely because

A. cost reduction is based on competition.

B. services call for cross-trade coordination.

C. outside competitors will continue to exist.

D. shippers will have the railway by the throat.


相似考题
更多“Text 3 In recent years, railroads have been combining with each other, mergingsintossuper ”相关问题
  • 第1题:

    AWebservicereturnsalistofsystemusersinthefollowingformat.Youneedtopopulateadrop-downmenuwiththeIDsandnamesoftheusersfromtheWebservice,intheorderprovidedbytheservice.Whichcodesegmentshouldyouuse?()

    A.$.ajax({type:"GET",url:serviceURL,success:function(xml){$.each($(xml),function(i,item){$("").attr("value",id).text(tx).appendTo("#dropdown");});}});

    B.$.ajax({type:"GET",url:serviceURL,success:function(xml){$(xml).find("user").each(function(){varid=$(this).id;vartx=$(this).name.text$("").attr("value",id).text(tx).appendTo("#dropdown");});}});

    C.$.ajax({type:"GET",url:serviceURL,success:function(xml){$(xml).find("user").each(function(){varid=$(this).attr("id");vartx=$(this).find("name").text();$("").attr("value",id).text(tx).appendTo("#dropdown");});}});

    D.$.ajax({type:"GET",url:serviceURL,success:function(xml){xml.find("user").each(function(node){varid=$(node).attr("id");vartx=$(node).find("name").text();$("").attr("value",id).text(tx).appendTo("#dropdown");});}});


    参考答案:C

  • 第2题:

    Mr. Smith is collaborating with Johnson in writing an play.

    A:cooperating
    B:arguing
    C:competing
    D:combining

    答案:A
    解析:
    本题考查的是对动词的现在分词的认知能力。本句意思:史密斯先生正与约翰逊合著一部戏剧。collaborating是collaborate的现在分词,意为合作。A.cooperating合作,例如:Workers' leaders have expressed their willingness to cooperate.工人领袖们表达了合作的意愿;B.arguing争论;C.competing竞争;D.combining结合。collaborate与cooperate意思最接近,所以选A。

  • 第3题:

    Subsequent events proved the man to be right.

    A:earlier
    B:later
    C:previous
    D:recent

    答案:B
    解析:
    本句意思:接下来发生的事证明这个人的观点是对的。subsequent意为“随后的,继······之后的”,与later(后来的)意思相近。earlier早先的;previous先前的;recent最近的。

  • 第4题:

    He is talking so much about America as if he ____ there.

    A、had been

    B、has been

    C、was

    D、been


    正确答案:A

  • 第5题:

    针对下列程序段,需要( )个测试用例才可以满足语句覆盖的要求。
    switch(value){case 0:other=30;break;case 1:other=50;break;case 2:other=300;case 3:other=other/value;break;default:other=other*value;}

    A.2
    B.3
    C.4
    D.5

    答案:C
    解析:
    本题考查白盒测试用例设计方法--语句覆盖法的概念。语句覆盖(Statement Coverage)的含义是:选择足够多的测试数据,使被测程序中的每条语句至少执行一次。

  • 第6题:

    1、针对下列程序段,需要()个测试用例才可以满足语句覆盖的要求。 switch (value ) { case 0: other = 30; break; case 1: other = 50; break; case 2: other = 300; case 3: other = other/value; break; default: other = other * value; }

    A.2

    B.3

    C.4

    D.5


    4