更多“He had something to write down and asked me for______. A.a paper B.some papersC ”相关问题
  • 第1题:

    将括号中的各词变为适当的形式填入空白。答案写在答题纸上。

    56.He _has written_(write) her 10 letters since he met her last years.


    正确答案:
    has written

  • 第2题:

    Java程序中读入用户输入的一个值,要求创建一个自定义的异常,如果输入值大于10,使用throw语句显式地引发异常,异常输出信息为“something’swrong!”,语句为()。

    A.if(I>10)throw Exception(“something’swrong!”);

    B.if(I>10)throw Exceptione(“something’swrong!”);

    C.if(I>10)thrownew Exception(“something’swrong!”);

    D.if(I>10)thrownew Exceptione(“something’swrong!”);


    正确答案:C

  • 第3题:

    下面软件中,哪个是国内的文献管理软件?

    A.NoteFirst

    B.Papers

    C.Mendeley

    D.EndNote


    A

  • 第4题:

    从供选择的答案中选出应填入英语文句中()的正确的答案。

    You should be (A) of developing your program, using something better than the method that uses the philosophy: write (B) down and then try to get it working. Surprisingly, this method is wide used to day with result that an average programmer on an average job (C) out only between five to ten lines of correct code per day. We hope your (D) will be greater. But to improve requires that you apply some discipline to the (E) of creating programs.

    A: ① available ② capable ③ useful ④ valuable

    B: ① anything ② nothing ③ something ④ thing

    C: ① does ② looks ③ turns ④ runs

    D: ① activity ② code ③ productivity ④ program

    E: ① process ② experience ③ habit ④ idea


    正确答案:A: ② B: ③ C: ③ D: ③ E: ①
    A: ② B: ③ C: ③ D: ③ E: ①

  • 第5题:

    I don’t want to lend any more money to him; he’s already in debt ________ me.

    [A] to

    [B] for

    [C] of

    [D] with


    正确答案:A

  • 第6题:

    1、假设有下面语句: enum tag{Up=1,Down,Left,Right}a; 下面哪一条语句不正确:

    A.a=tag(2);

    B.a=2;

    C.a=Down;

    D.a=(tag)2;


    a=2;