niusouti.com
更多“Next to biology, I like physics ______ .”相关问题
  • 第1题:

    I have never been to Italy, but that is the country__________ .

    A. where I most like to visit

    B. I'd most like to visit

    C. I like to visit it most

    D. which I like to visit it


    正确答案:B
    本题考查定语从句。先行词“the country”作定语从句中visit的宾语,因此引导词应该用关系代词that或者which,并且可以省略。题干意思:我从来没有去过意大利,但那是我最想去的国家。

  • 第2题:

    I take chemistry and biology because I need ( ) to get into medical school.

    A、it

    B、they

    C、them

    D、their


    参考答案:C

  • 第3题:

    What starting salary do you expect? ()

    A. I'd like to start on Monday next week.

    B. I expect to get a salary increase.

    C. I'd like to start at ¥5,000 a month.


    参考答案:C

  • 第4题:

    以下程序的输出结果为 Dim i,c(10),p(3) k=5 For i=0 To 10 c(i) =i Next i For i=0 To 2 p(i) = c(i * (i + 1)) Next i For i=0 To 2 k=k+p(i) * 2 Next i Print k

    A.20

    B.21

    C.56

    D.32


    正确答案:B
    解析:第一个循环对数组c()进行赋值,第二个循环对数组p()进行赋值,第三个循环对k进行累加,k的初值等于5,第一次循环k=k+p(0)*2=5……,第三次循环k=k+p(2)*2=21并输出。

  • 第5题:

    Susan: Betty, we'd like you to join us at a buffet party next Saturday.

    Betty: ___________, Susan. What time do you expect me to be there?

    A、I'd love to

    B、No way

    C、By no means

    D、I'm afraid not


    参考答案:A

  • 第6题:

    有下面的程序段,其功能是按图1所示的规律输出数据: Dim a(3,5)As Integer For i=1 To 3 For j=1 To 5 a(i,j)=i+j Print a(i,j); Next Print Next

    若要按图2所示的规律继续输出数据,则接在上述程序段后面的程序段应该是( )。

    A.For i=1 To 5 For j=1 To 3 Print a(j,i); Next Print Next

    B.For i=1 T0 3 For j=1 To 5 Print a(j,i); Next Print Next

    C.For j=l To 5 For i=1 To 3 Print a(j,i); Next Print Next

    D.For i=1 To 5 For=1 To 3 Print a(i,j): Next Print Next


    正确答案:A
    A。【解析】本题是要得出矩阵的倒置,首先本题定义了一个3行5列的矩阵,转换完成后要变成5行3列,把原来的行元素变成后来的列元素,所以先输出j,再输出i。故本题答案为A选项。

  • 第7题:

    ---- We’re organizing a party next Saturday, and I’d like you to come.

    ---- ( )! I have another one that day. Thank you just the same.

    A. Good luck

    B. What a pity

    C. Never do it again

    D. Well done


    正确答案:B

  • 第8题:

    I could scarcely keep pace( )the new discoveries in biology.
    with


    答案:
    解析:
    keep pace with(=go forward at the same rate as)“跟……齐步前进”。

  • 第9题:

    Would you like to come to my birthday party next? Oh, thanks a lot.()

    • A、Yes, please
    • B、Yes, I would
    • C、I'd love to
    • D、I've no idea

    正确答案:C

  • 第10题:

    翻译:I’d like to remind you that we have to withdraw our offer if we don ’ t hear from you by next Monday.


    正确答案: 我方要提醒你方,若我们不能在下个星期一前收到答复,该报盘将会被撤销。

  • 第11题:

    单选题
    Would you like to come to my birthday party next? Oh, thanks a lot.()
    A

    Yes, please

    B

    Yes, I would

    C

    I'd love to

    D

    I've no idea


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

  • 第12题:

    单选题
    So little _____ about physics that the lecture was completely beyond me.
    A

    I knew

    B

    did I know

    C

    I had known

    D

    had I known


    正确答案: B
    解析:
    句意:我对物理学知之甚少,因此完全听不懂讲座的内容。倒装结构。“so+形容词/副词”置于旬首时,句子要用部分倒装,即把助动词、系动词或情态动词放到主语之前。

  • 第13题:

    -I suggest that you conduct a commodity re-inspection in a month. - ()

    AI think you should apply for it as soon as possible. ;

    BThe shipment you ordered will arrive next week. ;

    CThat sounds good, but I’d like to know how much time it will take.


    参考答案:C

  • 第14题:

    i’d like to __________my appointment on wednesday and make another appointment for next week.

    A. give up

    B. stop

    C. remove

    D. cancel


    参考答案:D

  • 第15题:

    Would you like to come to the party tomorrow? —( ).

    A. I'd like

    B. I like it

    C. I'd like to

    D. I'd like it


    正确答案:C     

  • 第16题:

    – What would you like for drink? -- _____________.

    A、I like tea.

    B、I drink tea.

    C、I have a cup of tea.

    D、I’d like a cup of tea.


    正确答案:D

  • 第17题:

    设有下面的两个类定义: class AA{ void Show ( ) {System.out.println ("I Like Java"):} } class BB extends AA} void Show ( ) {System.out.println ("I like C++"); } } 则顺序执行如下语句后输出的结果为( )。 AA a; BB b; a.Show (); b.Show ();

    A.I Like Java I Like C++

    B.I Like C++ I Like Java

    C.I Like Java I Like Java

    D.I Like C++ I Like C++


    正确答案:A

  • 第18题:

    ●试题二

    阅读下列函数说明和C代码,将应填入(n)处的字句写在答题纸的对应栏内。

    【说明】

    该程序运行后,输出下面的数字金字塔

    【程序】

    include<stdio.h>

    main ()

    {char max,next;

    int i;

    for(max=′1′;max<=′9′;max++)

    {for(i=1;i<=20- (1) ;++i)

    printf(" ");

    for(next= (2) ;next<= (3) ;next++)

    printf("%c",next);

    for(next= (4) ;next>= (5) ;next--)

    printf("%c",next);

    printf("\n");

    }

    }


    正确答案:
    ●试题二【答案】(1)(max-′0′)(2)′1′(3)max(4)max-1(5)′1′【解析】该程序共有9行输出,即循环控制变量max的值是从1~9。每行输出分3部分,先用循环for语句输出左边空白,(1)空填"(max-′0′)";再用循环输出从1到max-′0′的显示数字,即(2)空和(3)空分别填1和max;最后输出从max-′1′~1的显示数字,即(4)空和(5)空分别填和max-1和′1′。

  • 第19题:

    I would like to collaborate with you in the next project.

    A:associate
    B:combine
    C:cooperate
    D:assist

    答案:C
    解析:
    我希望下个项目和你合作。associate“联系”。如:I can't associate him with crime.我无法把他和犯罪联系起来。combine“联合”,如:combine work with pleasure将工作与快乐结合。cooperate“合作”。如:It is pleasant cooperating with you.和你合作很愉快。assist “帮助”。如:I wonder who will assist us.我想知道谁会帮我们。

  • 第20题:

    I've lost my interest(  )physics.
    A.in
    B.on
    C.at
    D.for


    答案:A
    解析:

  • 第21题:

    我想和大副谈谈。()

    • A、I would like to talk with the chief officer.
    • B、I would like to talk with the captain.
    • C、I would like to talk with the second officer.
    • D、I would like to talk with the third officer.

    正确答案:A

  • 第22题:

    单选题
    Salesgirl: ______.  Customer: No. I’d like a long-sleeved shirt in yellow, medium.  Salesgirl: I think we’re out of your size.  Customer: Well, can you get me one?  Salesgirl: I think so. Check back next week.
    A

    Can you help me?

    B

    Is somebody taking care of you?

    C

    What are you looking for?  

    D

    Can I help you?


    正确答案: B
    解析:
    下文顾客回答No,显然此处应该是一个一般疑问句,C项排除。A项和D项的回答都不应该是No,只有B项合适,售货员问 “有人接待你么”?顾客回答”没有”。

  • 第23题:

    问答题
    翻译:I’d like to remind you that we have to withdraw our offer if we don ’ t hear from you by next Monday.

    正确答案: 我方要提醒你方,若我们不能在下个星期一前收到答复,该报盘将会被撤销。
    解析: 暂无解析