更多“—_____ twenty dollars a big sum to her?—I suppose so.”相关问题
  • 第1题:

    I first met her ( ) a summer afternoon some twenty years ago.

    A、on

    B、in

    C、at

    D、/


    参考答案:A

  • 第2题:

    “() a hundred dollars enough? ”“I suppose so. ”

    A、Is

    B、Are

    C、Will be

    D、Were


    参考答案:A

  • 第3题:

    She did me such a big favor. _____ I knew her name.

    A、if

    B、only

    C、if only

    D、only just


    参考答案:C

  • 第4题:

    That yellow purse _________ her 25 dollars.

    A、paid

    B、spent

    C、cost

    D、took


    正确答案:C

  • 第5题:

    以下能够正确计算1+2+3+…+10的程序是

    A.Private Sub Command1_Click() Sum=0 ForI=1 To 10 Sum=Sum+I Next I Print Sum End Sub

    B.Private Sub Command1_Click() Sum=0,I=1 Do While I<=10 Sum=Sum+I I=I+1 Print Sum End Sub

    C.Private Sub Command1_Click() Sum=0: I=1 Do Sum=Sum+I I=I+1 Loop While I<10 Print Sum End Sub

    D.Private Sub Command1_Click() Sum=0: I=1 Do Sum=Sum+I I=I+1 Loop Until I<10 Print Sum End Sub


    正确答案:A
    解析:本题考查For循环与 Do循环控制语句。A选项进行10次循环,分别将1之10累加给Sum,故正确。选项B缺少Loop关键词,否则也是正确的。选项C与D由于受条件“lclo”限制,Do循环只能进行一次。

  • 第6题:

    Although he is in financial difficulties, he is ()to accept my offer of the loan of twenty thousand dollars.

    A.reliable
    B.regular
    C.reluctant
    D.religious

    答案:C
    解析:
    虽然他经济有困难,他还是不愿意接受我借给他的两万块。

  • 第7题:

    下列哪种写法符合合法汇票对金额的要求()。

    APay to the order of A Co.the sum of one thousand US dollars by installments

    BPay to the order of A Co.the sum of one thousand US dollars plus interest

    CPay to the order of A Co.the sum of one thousand US dollars only

    DPay from our N0.2 account to the order of A Co.the sum of one thousand US dollars only converted into GBP


    C

  • 第8题:

    已经int i;int sum=0,要求求1加到10的和,能完成此操作的程序段正确的是()。

    • A、for(i=1;i<10;i++)sum+=i;
    • B、for(i=1;i<11;i++)sum=i;
    • C、for(i=1;i<=10;i++)sum=sum+i;
    • D、for(i=0;i<=20;i++)sum+=i;

    正确答案:C

  • 第9题:

    以下程序的运行结果是().  main()  {  int  i=1,sum=0;  while(i<10)  sum=sum+1;i++;     printf("i=%d,sum=%d",i,sum);  }

    • A、i=10,sum=9
    • B、i=9,sum=9
    • C、i=2,sum=1
    • D、运行出现错误

    正确答案:D

  • 第10题:

    单选题
    根据下列的汇票记载,可判定记载为()的汇票为有效汇票。
    A

    Pay to Tom Co. or order the sum of two thousand US dollars.

    B

    Pay to Tom Co. providing the goods they supply are complied with contract the sum of five hundred US dollars.

    C

    Pay to Tom Co. out of the proceeds in applicant’s No.3 account with us the sum of three thousand US dollars.

    D

    Pay to Tom Co. the sum of four thousand US dollars upon receipt of Bill of Lading No.1235.


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

  • 第11题:

    单选题
    That big dictionary _____ Tom two hundred dollars.
    A

    spent

    B

    paid

    C

    cost

    D

    took


    正确答案: D
    解析:
    句意:那本大字典花了汤姆200美元。这四个单词均可表示“花费”,但所用主语不同:spend和pay的主语只能是人;cost的主语通常是事或物;take的主语人、事、物均可。据此排除A、B项。选项所接宾语方面,cost的宾语通常是钱;take的宾语通常是时间。综合分析,最优选项为C。

  • 第12题:

    单选题
    下列哪种写法符合合法汇票对金额的要求()
    A

    Pay to the order of A Co.the sum of one thousand US dollars by installments

    B

    Pay to the order of A Co.the sum of one thousand US dollars plus interest

    C

    Pay to the order of A Co.the sum of one thousand US dollars only

    D

    Pay from our N0.2 account to the order of A Co.the sum of one thousand US dollars only converted into GBP


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

  • 第13题:

    There was nothing to ________ so.

    A、keep her from doing

    B、keep her do

    C、prevent her doing

    D、stop her do


    参考答案:A

  • 第14题:

    下列程序段的输出结果是【】。 include void main() {inti=10,sum=0;do{sum=+sum+i;i=i

    下列程序段的输出结果是【 】。

    include<iostream.h>

    void main()

    {int i=10,sum=0;

    do

    {

    sum=+sum+i;

    i=i-2;

    }while(i>=2);

    cout<<sum<<end1;

    }


    正确答案:30
    30

  • 第15题:

    I think we should let Mary to go camping with her boyfriend. ______ she is a big girl now.

    A、Above all

    B、First of all

    C、For all

    D、After all


    参考答案:D

  • 第16题:

    以下C程序的运行结果为______。main(){ int i=1,sum=0; loop:if(i<=10) { sum+=i; i++; goto loop; } printf("sum=%d\n",sum);}

    A.sum=10

    B.sum=55

    C.sum=100

    D.sum=88


    正确答案:B

  • 第17题:

    以下能够正确计算1+2+3+…+10的程序是

    A.Private sub Command1_Click( ) sum=0 For 1=1 To 10 Sum=sum+1, Next I Print Sum End Sub

    B.Private sub Command1_Click( ) Sum=0,I=1 Do While l<=10 Sum=Sum+1 I=I+1 Print Sum End Sub

    C.Private Sub command1_click( ) Sum=0:I=1 Do Sum=Sum+1 I=I+1 Loop While I<10 Print Sum End Sub

    D.Private Sub command1_Click( ) Sum=0:I=1 Do Sum=Sum+1 l=I+1 Loop Until I<10 Print Sum End Sub


    正确答案:A
    解析:A选项进行10次循环,分别将1至10累加给Sum,故正确。选项B缺少Loop关键词,否则也是正确的。选项C与D由于受条件“Iclo'’限制,Do循环只能进行一次。

  • 第18题:

    Two hundred dollars__a large sum of money to the old man.

    A.is
    B.is to be
    C.are
    D.are to be

    答案:A
    解析:
    表示时间、距离、重量、价值等的复数名词做主语时,如果当成整体看待,谓语动词用单数形式。

  • 第19题:

    That yellow purse()her dollars.

    Acost

    Bspent

    Ctook 

    Dpaid


    A

  • 第20题:

    累加求和中,与sum+=i;相同的是()。

    • A、sum=sum+i;
    • B、sum=i+sum;
    • C、sum=i;
    • D、i=sum;

    正确答案:A,B

  • 第21题:

    单选题
    That yellow purse()her dollars.
    A

    cost

    B

    spent

    C

    took 

    D

    paid


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

  • 第22题:

    单选题
    根据下列汇票记载,可判定记载为()的汇票为无效汇票。
    A

    Pay to Jackson Co. or order the sum of six thousand US dollars. Drawn under L/C No.83419 issued by Westminster Bank Limited, London dated on 8th May 2004.

    B

    Pay to Jackson Co. or order the sum of six thousand US dollars and charge/debit same to applicant’s account with you.

    C

    Pay to Jackson Co. or order the sum of six thousand Hongkong dollars plus interest.

    D

    Pay to Jackson Co. or order the sum of six thousand Hongkong dollars plus interest calculated at the rate of 8% p.a.


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

  • 第23题:

    多选题
    What bills are invalid?以下那些票据是有效的?()
    A

    Pay to M Co. or order the sum of one thousand US dollars.”

    B

    Pay to M Co. providing the goods they supply are complied with contract the sum of one thousand US dollars.”

    C

    “Pay to M Co. out of the proceeds in our No. 1 account the sum of one thousand US dollars.”

    D

    “Pay to M Co or order the sum of one thousand US dollars and charge/debit same to applicant’s account maintained with you.”

    E

    “Pay to the order of ABC Co. the sum of one thousand US dollars plus interest


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

  • 第24题:

    单选题
    —_____ twenty dollars a big sum to her?—I suppose so.
    A

    Will be

    B

    Is

    C

    Are

    D

    Were


    正确答案: B
    解析:
    表示时间、金钱、距离等度量的词组作主语时,常常被当作一个整体来看待,谓语动词应该用单数,故为B。