itgle.com

[A] handed out[B] turn over[C] brought back[D] passed down

题目

[A] handed out

[B] turn over

[C] brought back

[D] passed down


相似考题

2.In the summer vocation, I usually go to my relative’s home in the country to rest after many months in school in the city. The summer days I recently spent _1_ me with happy memories. Let me tell you our daily program _2_ the short stay and the country life we enjoyed there. We usually get up at six and took a walk _3_ the beautiful grassland of wild flowers. The air was so clean and fresh. The pretty birds had just risen from their sleep and were jumping from branch to branch, singing their merry songs. Soon the rays of the sun could be seen on the river. We _4_ under the shade of trees for an hour and then went home. During the afternoon, we went to swim in a small river till the glorious sun was _5_ in the west. Sometimes, after it rained, the sky _6_ to be more beautiful. After supper, people began to enjoy the refreshing soft wind outside. Then _7_ came the bright moon. Occasionally one or two meteors (流星) would suddenly run across the sky as if they were playing with the fireflies. _8_, the world was warpped in sleep. The sweet notes of flute were heard _9_ the woods. Oh, how touching the _10_ was! It made us forget all the worries of life. [共10题](1)(A) gave (B) brought (C) filled (D) offered(2)(A) during (B) in (C) between (D) before(3)(A) to (B) along (C) into (D) towards(4)(A) lay (B) lie (C) lain (D) laid(5)(A) rising (B) arising (C) setting (D) setting down(6)(A) got (B) looked (C) felt (D) watched(7)(A) around (B) about (C) over (D) out(8)(A) Now and then (B) From then on (C) By and by (D) Up till now(9)(A) over (B) in (C) through (D) across(10)(A) music (B) song (C) voice (D) sound

更多“[A] handed out [B] turn over [C] brought back [D] passed down ”相关问题
  • 第1题:

    [A] over [B] out [C] off [D] away


    正确答案:B

        此题属于语意搭配题。leave...out表示“省略,忽略,不考虑”,例如:The entire chapter was left out in the third edition.原文意思:虽然有庞大的公共医疗保障体系。但仍有许多美国人享受不到该保障,即被忽略(1eave out)了,故选项[B] out正确。选项[A] over1eave over)表示“留下,剩下,延期”,例如:questions left over by history;选项[C] off1eave off)表示“使停止,不再穿/使用”。例如:When will the snow leave off? 选项[D] away不与leave连用。

        全句可译为:但是,即使有庞大的公共医疗保障体系一一今年它将花掉845亿美元一一相当多的美国人仍无法享受到医疗保障。

  • 第2题:

    阅读下列程序段

    public class OperatorsAndExpressions {

    String conditionalExpression(int score) {

    String result;

    //如果score超过60分, 则结果是passed, 否则是doesn't pass

    result=-(score>=60)?"passed":"doesn't pass";

    System.out.println(result);

    retum result;

    }

    public static void main(String args[]) {

    OperatorsAndExpressions perAndExp=new OperatorsAndExpressions();

    //条件表达式

    OperAndExp.conditionalExpression(65);

    }

    }

    其执行结果是【 】 。


    正确答案:passed
    passed 解析:本题考查Java的条件运算符。程序中首先定义了—个OperatorsAndExpressions类,该类非常简单,其中只包含一个conditionalExpression方法。该方法中对传递进来的参数score进行判断,如果score>=60分,则返回结果"passed",否则返回结果"doesn't pass"。这个操作通过一个条件表达式语句实现,即result=(score>=60)?"passed":"doesn't pass"。首先计算score>=60的结果,如果结果为true,则将"passed"作为整个条件表达式的结果;如果score>=60的结果为false,则将"doesn't pass"作为整个条件表达式的结果。
      主程序中生成了一个OperatorsAndExpressions类对象OperAndExp,然后调用该对象的conditionalExpression方法,其中参数是65。经过前面对eonditionalExpression方法的分析,可知65>=60,result中存放的内容是"passed"。因此输出result的结果是 "passed"。
      因此,本题划线处应填入"passed"。

  • 第3题:

    The train pulled ()and all the passengers got().

    A.in, off

    B.up, on

    C.down, out

    D.out, off


    正确答案:A

  • 第4题:

    ( 8 )阅读下列程序段

    public class OperatorsAndExpressions {

    String conditionalExpression ( int score ) {

    String result;

    //如果 score 超过 60 分,则结果是 passed, 否则是 doesn't pass

    result= ( score>=60 ) ?"passed":"doesn't pass" :

    System.out.println ( result ) ;

    return result;

    public static void main ( String args[] ){

    OperatorsAndExpressions perAndExp=new OperatorsAndExpressionsQ;

    //条件表达式

    OperAndExp. conditionalExpression ( 65 ) ;

    }

    }

    其执行结果是 【 8 】


    正确答案:

  • 第5题:

    You can ______the seat belt ____ as soon as the light overhead goes off.

    A.turn…on

    B.take…off

    C.take…out

    D.pick…out


    正确答案:C

  • 第6题:

    阅读下面程序

    public class OperatorsAndExpressions {

    String conditionalExpression(int score) {

    String result;

    //如果score超过60分,则结果是passed,否则是doesn't pass

    result=(score>=60)?"passed":"doesn't pass":

    System.out.println(result);

    return result;

    }

    public static void main(String args[]) {

    OperatorsAndExpressions perAndExp=new OperatorsAndExpressions();

    //条件表达式

    OperAndExp.conditionalExpression(65);

    }

    }

    程序的执行结果是______。


    正确答案:passed
    passed 解析:条件运算符的形式为expression1? expression2:expression3。如果expression1的结果为true,则计算expression2,并将结果作为整个表达式的值;如果expression1的结果为false,则计算expression3,并将结果作为整个表达式的值。本程序中,score=65,score>60的判断结果为true,所以result="passed",最后输出结果当然也是passed。