DI was in line waiting to pay. In line there were two people before me. A little boy was buying some rather strange clothes. He chatted with anyone who was interested in the clothes and soon we learnt that he was going to a kindergarten(幼儿园) party. He had

题目

D

I was in line waiting to pay. In line there were two people before me. A little boy was buying some rather strange clothes. He chatted with anyone who was interested in the clothes and soon we learnt that he was going to a kindergarten(幼儿园) party. He had done a great job of putting together interesting costumes.

I noticed that the little boy was paying mostly with change(零钱). It seemed that he had robbed his pig bank(猪形储蓄罐) to do this shopping. However, the cashier told him he was short after counting all the money. The boy thought for a moment and said, “Please keep the shirt and I will come back with more money. “

It was clear that he had already used all the money he had and he was $ 8.00 short. The lady in front of me said, “Well, I could pay half of that. “I told the boy that I could pay the other half. We dug into our handbags. However, both of us only had ten-dollar bills(纸币) and we needed the cashier to get the change for us. Other shoppers began digging into their pockets to find some change. It was amazing and touching as all these strangers seemed to react(反应) with the same mind. All wanted to be of help. Within minutes the cashier said, “I have too much money.” The cashier didn’t need our ten-dollar bills. Then the lady in front of me, who had been the first to offer help, said, “Wait! I didn’t even get a chance to give anything!”

I smiled at her and said, “You did your share, because it was your idea and you started all this. “ The little boy smiled and thanked us. We wished him the best and he left. I was left with a good feeling. I had seen the love and goodness of others all around me. The woman in front of me smiled and said, “It sure feels good to give, doesn’t it?” I smiled back and said, “Yes !”

30. What is this passage mainly about?

A. Love and goodness. B. Culture and tradition.

C. Friendship and honesty. D. Communication and understanding.


相似考题
参考答案和解析
正确答案:A
更多“D I was in line waiting to pay. In line there were two people before me. A little boy was ”相关问题
  • 第1题:

    Given:WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObjbecomesacandidatefor garbagecollection?()

    A.Line16

    B.Line17

    C.Line18

    D.Line19


    参考答案:D

  • 第2题:

    给出下列的代码,哪行在编译时可能会有错误? ① public void modify() { ② int i,j,k; ③ i=100; ④ while(i>0) { ⑤ j=i*2; ⑥ System.out.println(" The value of j is"+ j); ⑦ k=k+1; ⑧ } ⑨}

    A.line 4

    B.line 6

    C.line 7

    D.line 8


    正确答案:C
    解析:局部变量在使用前必须进行初始化,而代码中的变量k在使用前没有进行初始化。

  • 第3题:

    给出下列的代码,哪行在编译时可能会有错误? ① public void modify( ){ ② int i,j,k; ③ i = 100; ④ while( i > 0){ ⑤ j = i * 2; ⑥ System.out.println("The value of j is" + j); ⑦ k=k + 1 ⑧ } ⑨ }

    A.line 4

    B.line 6

    C.line 7

    D.line 8


    正确答案:C
    解析:局部变量在使用前必须进行初始化,而代码中的变量k在使用前没有进行初始化。

  • 第4题:

    Given:11.publicvoidgenNumbers(){12.ArrayListnumbers=newArrayList();13.for(inti=0;i<10;i++){14.intvalue=i*((int)Math.random());15.IntegerintObj=newInteger(value);16.numbers.add(intObj);17.}18.System.out.println(numbers);19.}WhichlineofcodemarkstheearliestpointthatanobjectreferencedbyintObjbecomesacandidateforgarbagecollection?()

    A.Line19

    B.TheobjectisNOTacandidateforgarbagecollection.

    C.Line17

    D.Line16

    E.Line18


    参考答案:A

  • 第5题:

    给出下列代码, ( )行在编译时可能会有错误。 ①public void modify( ){ ②int i,j,k; ⑧i=100; ④while(i>0){ ⑤j=i*2; ⑥System.out.println("The value of j is"+j); ⑦k=k+l; ⑧} ⑨}

    A.line 4

    B.line 6

    C.line 7

    D.line 8


    正确答案:C

  • 第6题:

    给出下列的程序段,哪行在编译时可能会有错误? ( ) ①public void modify( ) ②int i,j,k; ③ i=100; ④ while(i>0){ ⑤ j=i*2; ⑥ System.out.println("The value of j is "+j); ⑦ k=k+1; ⑧ } ⑨}

    A.line 4

    B.line 6

    C.line 7

    D.line 8


    正确答案:C