参考答案和解析
正确答案:B
更多“She’s going to () that new dress.A、try outB、try onC、try for”相关问题
  • 第1题:

    Encourage your children to try new things, but try not to _________ them too hard.

    A.draw

    B.strike

    C.rush

    D.push


    正确答案:D

  • 第2题:

    You can try these methods to keep your interview anxiety()control.

    A. under

    B. on

    C. with


    参考答案:A

  • 第3题:

    She had waited at another museum for days and had spent all her money _____ to find Sidney.

    A:tried

    B:trying

    C:to try

    D:try


    正确答案:B

  • 第4题:

    He has already made up his mind, it’s no use________him.

    A. try to persuade

    B. to try to persuade

    C. trying to persuade

    D. to try persuading


    正确答案:C 

  • 第5题:

    下列程序创建了一个线程并运行,横线处应填入的正确代码是( )。 public class Try extends Thread{ public static void main(String args[]){ Thread t=new Try; ; } public void runf System.out.println(”Try!"); } }

    A.t.start

    B.t.class

    C.t.thread

    D.t.static


    正确答案:A
    A。【解析】start是类Thread的方法,其中start方法用于启动线程,使之从新建状态转入就绪状态并进入就绪队列排队,一旦轮到它来享用CPU资源时,就可以脱离创建它的主线程独立地开始自己的生命周期了。

  • 第6题:

    Encourage your children to try new things, but try not to( ) them too hard.

    A. draw B. strike C. rush D. push


    正确答案:D

  • 第7题:

    ()her and then try to copy what she does.

    AMind

    BSee

    CStareat

    DWatch


    D

  • 第8题:

    在Java中,下面描述正确的是()。    

    • A、try块中可以有嵌套try块
    • B、try块后最多可以跟随3个catch块
    • C、try块可以单独存在

    正确答案:A

  • 第9题:

    在C#语言中,下列异常处理结构中有错误的是()。

    • A、catch{}finally{}
    • B、try{}finally{}
    • C、try{}catch{}finally{}
    • D、try{}catch{}

    正确答案:A

  • 第10题:

    单选题
    A large supply of spare parts is very expensive, so a company
    A

    will try to keep as many as it can.

    B

    will try to keep as low as it can.

    C

    will try to make them all by itself.

    D

    will try to deliver it quickly.


    正确答案: A
    解析:
    文中的的第二段提到“A large supply of spare parts is very expensive, so a company will try to keep its inventory as low as it can…”,由此可知答案选B。

  • 第11题:

    单选题
    A large supply of spare parts is very expensive, so a company ______.
    A

    will try to keep as many as it can

    B

    will try to keep as low as it can

    C

    will try to make them all by itself

    D

    will try to deliver it quickly


    正确答案: D
    解析:
    文章第二段首句指出“A large supply of spare parts is very expensive, so a company will try to keep its inventory as low as it can…”,由此可知,由于大量零部件的储存成本很高,所以企业尽可能使库存降低,对应选项B。

  • 第12题:

    问答题
    Helen feels bored doing homework every day, so she wants to try something new.

    正确答案: 海伦每天做作业觉得很无聊,因此她想尝试一些新事物。
    解析: 暂无解析

  • 第13题:

    The idea sounds fine, but we still need to ( ) it ( ) in practice.

    A. figure…out

    B. try…out

    C. carry … out

    D. work… out


    参考答案:A

  • 第14题:

    “I usually go to work by bus.”“Why notby bike for a change?”()

    A. trying to go

    B. try going

    C. to try going

    D. try go


    参考答案:B

  • 第15题:

    It's no good __________ remember grammatical rules. You need to practice what you have learned.

    A. trying to

    B. try to

    C. to try to

    D. that try t0


    正确答案:A   

  • 第16题:

    设有结构体类型定义: struct try { int one; float two; }*str;若要动态开辟一个结构单元,使指针str指向其首地址,正确的语句是______。

    A.str=(try*)malloc(sizeof(try));

    B.*str=(struct try*)malloc(sizeof(struct try));

    C.str=(strucy try*)malloc(sizeof(struct try));

    D.str=(struc try)malloc(sizeof(struct try));


    正确答案:C
    解析:由于在ANSIC中malloc函数返回的地址为void,故在调用函数时,必须利用强制类型转换将其转换成所需的类型。

  • 第17题:

    下列程序创建了一个线程并运行,请在下划线处填入正确代码。

    public class Try extends Thread{

    public static void main(String args[]){

    Threadt=new Try();

    【 】;

    }

    public void run(){

    System.out.println(“Try!”);

    }

    }


    正确答案:i
    i

  • 第18题:

    —I usually travel by train.
    —Why not________by plane for a change

    A.to try going
    B.trying to go
    C.to try and go
    D.try going

    答案:D
    解析:

  • 第19题:

    在java中,惯用语捕获错误的语法try-catch-finally的下列描述正确的是() 

    • A、try-catch必须配对使用
    • B、try可以单独使用
    • C、try-finally可以配对使用
    • D、在try-catch后如果定义了finally,则finally肯定会执行

    正确答案:C,D

  • 第20题:

    下面关于try块的说法正确的是()

    • A、try块后至少应有一个catch块
    • B、try块后必须有finally块
    • C、可能抛出异常的方法应放在try块中
    • D、对抛出的异常的处理应放在try块中

    正确答案:C

  • 第21题:

    下面关于try、catch和finally语句块的组合使用,正确的是()

    • A、try{,}
    • B、try{,}finally{,}
    • C、try{,}catch{,}finally{,}
    • D、try{,}catch{,}catch{,}

    正确答案:B,C,D

  • 第22题:

    单选题
    ()her and then try to copy what she does.
    A

    Mind

    B

    See

    C

    Stareat

    D

    Watch


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    —I’m going to try and do a German course this year.  —Oh. really? ______ I won’t see as much of you if you do.
    A

    That’s possible!

    B

    That’s a shame!

    C

    What a good idea!

    D

    It’s all my fault!


    正确答案: A
    解析:
    空格后面是I won’t see as much of you if you do,如果那样的话我就不能经常见到你了,表示一种遗憾,所以选B项:真可惜,好遗憾啊!