When a student said in class, “I goed there yesterday”. The teacher responded“say it again, please”. The response is an example of _____.

题目
When a student said in class, “I goed there yesterday”. The teacher responded“say it again, please”. The response is an example of _____.

A.recast
B.modification
C.positive feedback
D.postponed feedback
如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

The teacher didn't say anything in the class.(改为同义句)

The teacher________ , ________in the class.


正确答案:
43. said nothing

第2题:

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.


正确答案:D

此题为推论题。It is because he did not accept a compliment(赞美的话)as the English people do。通过此句知道中国人接受赞扬的方式与西方人的态度不同,并且可以推论出美国人为什么对中国学生的回答感到惊讶。

第3题:

— Can you catch what the teacher said in the English class?

— Sorry, I can ____ understand it.

A. hardly B. almost C. nearly D. never


正确答案:A

第4题:

Her teacher held her ____ as an example of a good student.

A. Down

B. Back

C. Up

D. out


参考答案:C

第5题:

-- Do you want me to help you?

-- _____

A. What did you say?

B. Repeat it.

C. I'm sorry, but I didn't catch what you said.

D. Please say that again.


参考答案: C

第6题:

B

Jack is a famous writer now.But he said he was not a good student when he was young.He was often late for class and didn’t like doing his homework. Sometimes he slept in class while the teacher was teaching.He didn't understand much, but he always thought he under-stood everything..

One day the teacher asked the students a question, "When John was ten years old, his brother was twenty. John is fifteen now and how old is his brother?" Jack answered, "That's easy. His brother is twice as old as John, so he is now thirty. "

Another time, the teacher in a science class asked, "When it thunders(打雷) , why do we always see the light before we hear the sound? "But, Miss White," said Jack quickly, "can't you .see our eyes are in front of our ears?"

The third time, the teacher in a biology class asked, "Why can fish swim in the water?" "But, Miss White," said Jack quickly, "don't you know fish can-t walk on land?"

( )26.Jack was not ________. when he was young.

A.strong

B.lazy

C.clever

D.well


正确答案:C
26.C【解析】由第一段可知Jack小时候并不聪明,也不勤奋,故选C.

第7题:

-I’m afraid the goods we received yesterday are short of weight. - __________________________

A I’m afraid we really couldn’t accept that. ;

B I suggest maybe should check it again. ;

C I’m sorry to say the shipment didn’t turn out to be satisfactory.


参考答案:C

第8题:

阅读以下说明和java代码,将应填入(n)处的字句写在对应栏内。

[说明]

有若干教师,每个教师只有姓名,一个教师可以指导多名研究生;每名研究生有姓名和研究方向,程序最后输出每个教师指导的所有研究生的姓名和研究方向。

[Java程序]

public class Teacher {

String name;

int top=0;

Student[] student=new Student[20];

public Teacher() {}

public Teacher(String name) { this.name=name;}

boolean add(Student stu){

int len=this.student.length;

if (top<len-1) {

this.student[top]=siu;

(1);

return true;

}

else

return (2);

}

void disp(){

System.out.println(“指导老师"”+this.name);

System.out.println(“研究生:”);

for(int i=0;i<(3);i++){

System.out.println(“姓名:”+this.student[i].name+“\t研究方向:”+this.student[i]. search);

}

}

public static void main(String[] args){

Teacher t[]={new Teacher(“李明”),new Teacher(“王华”)};

Student s1 = new Student(“孙强”,“数据库”);

Student s2 = new Student(“陈文”,“软件工程”);

Student s3 = new Student(“章锐”,“计算机网络”);

if(! t[0].add(s1)) {System.out.println(“每个老师最多只能指导20个学生!”);}

if(! t[0].add(a2)) {System.out.println(“每个老师最多只能指导20个学生!”);}

if(! t[1].add(s3)) {System.out.println(“每个老师最多只能指导20个学生!”);}

for(int i=0;i<2;i++)

(4);

}

}

class (5) {

String name;

String search;

public Student(){}

public Student(String name,String search){

this.name=name;

this.search=search;

}

String getName(){return this.name;}

String getSearch(){return this.search;}

}


正确答案:(1) top++及其等效形式 (2) false (3) top (4) t[i].disp() (5) Student
(1) top++及其等效形式 (2) false (3) top (4) t[i].disp() (5) Student 解析:(1)~(2):add函数是给Teacher类的student数组增加一个学生,每个老师最多能指导20个学生,如果增加成功则返回true;否则返回false。Top是一个表示student数组里面有多少个学生的标志。每增加一个学生,top就要加1;
(3)disp函数是用一个循环来显示老师所指导的所有学生,循环变量从0开始,上限是top-1;
(4)此处是调用disp函数来显示所有老师指导的学生。
(5)根据程序大意,这是Student类的定义。

第9题:

The teacher said, “( ) your best Your project is not satisfactory.I'm afraid you will have to do it again.”

A、Will you try

B、Have you tried

C、Do you try

D、Are you


参考答案:B

第10题:

When I entered the teacher ’s office, she ______ at me and then buried her nose to the homework again.

A.stared

B.looked

C.noticed

D.glanced


参考答案:D

更多相关问题