网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

Passage Two

The other day I heard an American say to a Chinese student of English "You speak very good English." But the student answered, "No, no. My English is very poor." The foreigner was quite surprised at the answer. Thinking he had not made himself understood or the student had not heard him clearly, he said, "Yes indeed, you speak English very well." But the Chinese student still kept saying "No". In the end the foreigner gave up and was at a loss what to say. What's wrong with the student's answer? It is because he did not accept a compliment(赞美的话)as the English people do. He should have said "Thank you" instead of "No". He actually understood what the American had said. But he thought he should be modest. If he said "Thank you", that would mean he was too proud. According to the western culture, if someone says the dishes you have cooked are very delicious, you should say "Thank you". If someone says to a Woman "You look so beautiful with the new clothes on", she should be very happy and answer "Thank you". In our country we think being modest is a virtue and showing off a bad thing. But in the west, if you are modest and say "No, I'm afraid I can't do it well", then the others will take it for granted that you really cannot do it. If you often say "No", you will certainly be looked down upon by others. When asking for a job, if one says something like "Let me have a try on the job" instead of "Yes, I can certainly do it," he or she will never expect to get it. So in the west one should always be confident. Without self-confidence, he cannot go anywhere. Confidence is of great importance to one in a country where competition is quite keen.

40. Why was the American surprised at the Chinese student's answer?

A. Because he wondered whether the student could really speak good English.

B. Because he could hardly hear what the student had said.

C. Because he wouldn't like others to say "No".

D. Because the way to accept a compliment in China is not the same as that in the western countries.


参考答案

更多 “ Passage TwoThe other day I heard an American say to a Chinese student of English "You speak very good English." But the student answered, "No, no. My English is very poor." The foreigner was quite surprised at the answer. Thinking he had not made himself understood or the student had not heard him clearly, he said, "Yes indeed, you speak English very well." But the Chinese student still kept saying "No". In the end the foreigner gave up and was at a loss what to say. What's wrong with the student's answer? It is because he did not accept a compliment(赞美的话)as the English people do. He should have said "Thank you" instead of "No". He actually understood what the American had said. But he thought he should be modest. If he said "Thank you", that would mean he was too proud. According to the western culture, if someone says the dishes you have cooked are very delicious, you should say "Thank you". If someone says to a Woman "You look so beautiful with the new clothes on", she should be very happy and answer "Thank you". In our country we think being modest is a virtue and showing off a bad thing. But in the west, if you are modest and say "No, I'm afraid I can't do it well", then the others will take it for granted that you really cannot do it. If you often say "No", you will certainly be looked down upon by others. When asking for a job, if one says something like "Let me have a try on the job" instead of "Yes, I can certainly do it," he or she will never expect to get it. So in the west one should always be confident. Without self-confidence, he cannot go anywhere. Confidence is of great importance to one in a country where competition is quite keen.40. Why was the American surprised at the Chinese student's answer?A. Because he wondered whether the student could really speak good English.B. Because he could hardly hear what the student had said.C. Because he wouldn't like others to say "No".D. Because the way to accept a compliment in China is not the same as that in the western countries. ” 相关考题
考题 Student: I'm nervous.Teacher:______. Betty, you'll finish it quickly.

考题 ( 10 )执行下列程序,显示的结果是 【 10 】 。one= "WORK"two = ""a = LEN ( one )i = aDO WHILE i=1two = two + SUBSTR ( one ,i , 1 )i=i - 1ENDDO? two

考题 c++,运行下面代码出错 #include iostreamusing namespace std;struct student_info{ string name; int chinese; int math; int english;};student_info student[5];void inputinfo(){ int i = 0; char a[20]; for(i = 0;i 5;i++) { cout"enter the "i+1" student's information "endl; cout"enter the name"endl; cina; student[i].name = a; cout"enter chinese performance :"endl; cinstudent[i].chinese; cout"enter math performance :"endl; cinstudent[i].math; cout"enter english performance :"endl; cinstudent[i].english; }}void outputinfo(){ int i = 0; while(i 5) { couti+1" student's information"endl; coutstudent[i].name.c_str()endl; cout"chinese "endl; coutstudent[i].chineseendl; cout"math "endl; coutstudent[i].mathendl; cout"english "endl; coutstudent[i].englishendl; i++; }}int avgfunction(int arr[],int n){ int i = 0; int total = 0; for(i = 0;i n;i++) { total += arr[i]; } return total / n;}void computavg() //这里是否正确?{ int theavg = 0; theavg = avgfunction(student[i].chinese,5); }int main(){ inputinfo(); outputinfo(); computavg(); cin.get(); return 0;} 帮我找出错误 然后改过来 择优为满意答案 不分先后

考题 阅读下列程序说明和C++代码,将应填入(n)处的字句写在对应栏内。[说明]①定义私有数据成员code、english分别用于表示考生的编号、英语成绩,它们都是int型的数据。②完成成员函数void Student::inputinformation()的定义,该函数用于用户输入一个考生对象的信息,输入格式如下:输入编号:英语成绩:计算机成绩:③利用已实现的类Student的成员函数,完成函数void firstname(Student *A[],int uum)的定义,该函数根据考生信息A[],输出num个考生中总分最高者的编号及其相应的总分,在此不考虑总分相同的情况。源程序文件test1.cpp清单如下:include < iostream. h >class Student(1)int computer;int total;publicvoid getinformation( );void computesum( );int getcode( );int gettotalscore( );~Student( );};void Student: :getinformation( ){(2)cout <<"英语成绩:";cin> >english;cout <<"计算机成绩:";cin > > computer;void Student:: computesum ( )total = english + computer;cout <<"编号" << code <<"总分:" <<total << endl;int Student::getcode( )return code;}int Student:: gettotalscore ( ){return total;}void firstname(Student * A[] ,int num){(3)tempsum = ( * A[0] ). gettotalscore( );for( int i=1; i <num; i++){if ( ( ( * A[i] ). gettotalscore( ) ) > tempsum){tempcode = ( * A[i] ). getcode( );tempsum = ( * A[i] ). gettotalscore( );}}cout <<"总分最高者--" << tempcode <<":" << tempsum <<endl;}void main( ){Student * A[3];int i,n =3for(i=0;i<n;i ++)A[i] = new Student;A[i] -> getinformation( )for(i=0;i<n;i ++){A[i] -> computesum( )firstname ( A,3 );}

考题 Yourcompanyhastwooffices.AllserversrunWindowsServer2003ServicePack2(SP2).Therelevantportionofthenetworkisconfiguredasshownintheexhibit.(ClicktheExhibitbutton.)wwwwww...EExxxaammkkkiiinngggsss...cccoomm|English|Chinese(Traditional)|Chinese(Simplified)|-8-ExamKingsInformationCo.,Ltd.Allrightsreserved.YouneedtoensurethatServer1cancommunicatewithWebserversontheInternet.WhichdefaultgatewayshouldyouassigntoServer1?()A.10.10.10.129B.10.10.11.1C.131.107.1.1D.192.168.1.1

考题 Youhaveastand-aloneserverthatrunsWindowsServer2003ServicePack2(SP2).wwwwww...EExxxaammkkkiiinngggsss...cccoomm|English|Chinese(Traditional)|Chinese(Simplified)|-7-ExamKingsInformationCo.,Ltd.Allrightsreserved.YouruntheRunascommandandreceivethefollowingerrormessage:1058:Theservicecannotbestarted,eitherbecauseitisdisabledorhasnoenableddevicesassociatedwithit.”YouneedtoensurethatyoucanuseRunassuccessfully.Whatshouldyoudo?()A.EnabletheRemoteRegistryservice.B.EnabletheSecondaryLogonservice.C.JointheservertoanActiveDirectorydomain.D.FromDeviceManager,scanforhardwarechanges.

考题 希望工程站点http://project-hope.cydf.edu.cn/中提供了几种语言的连接,下列不属于其中的是()。 A.Chinese(GB.B.Chinese(Big5)C.JapaneseD.English

考题 若有以下定义,则对变量student1中“生日”的正确赋值方式是()。 struct student { int num; char name[20], sex; struct { int year, month, day; } birthday; } ; struct student student1;A.student1.birthday.year = 2003; student1.birthday.month = 5; student1.birthday.day = 1;#B.year = 2003; month = 5; day = 1;#C.birthday.year = 2003; birthday.month = 5; birthday.day = 1;#D.student1.year = 2003; student1.month = 5; student1.day = 1;

考题 程序设计题 使用抽象类和抽象方法模拟不同人种。(15分) (1)创建一个抽象类Person,属性:name和age;在Person类中定义一个抽象方法say();(5分) (2)创建Chinese类继承Person,重写say()方法;(5分) (3)创建American类继承Person,重写say()方法;(5分)

考题 1、Chinese: 一分耕耘,一分收获;English: No pains, no gains. What’s the translation skill used in this example of Chinese-to-English _______?A.Sentence divisionB.AffirmationC.TranspositionD.Negation