【单选题】【消耗次数:1】
What role does a teacher play in the following activity? The teacher asks a student a question “Have you ever bought clothes with problems?” If the student doesn’t seem to be ready, the teacher says “for example, a shirt without...” and points to the buttons on his own shirt or jacket.
Controller
Assessor
Organizer
Prompter.
参考答案:
复制
纠错
相关题目
【单选题】 What role does a teacher play in the following activity? When a student has made a sentence with borrow, “I borrowed a paper to write a letter”, the teacher says, “Well, we don’t say a paper, we say a piece of paper.”
①  Controller
②  Assessor
③  Organizer
④  Prompter.
【单选题】 What role does a teacher play in the following activity? The teacher asks students to produce conversations (either orally or in writing) by using particular patterns or expressions they have just learned.
①  Controller
②  Assessor
③  Organizer
④  Prompter.
【单选题】 What role does a teacher play in the following activity? When the students have in groups decided where to go for a spring outing, the teacher asks each group to tell the others why they have made such a choice.
①  Controller
②  Assessor
③  Organizer
④  Prompter.
【单选题】 What role does a teacher play in the following activity? The teacher has a word in his mind and asks students to guess by asking only Yes/No questions until they make the correct guess.
①  Controller
②  Assessor
③  participant
④  Resource-provider.
【单选题】 What role does a teacher play in the following activity? The teacher gives students 2 minutes to skim a text, and when time is up, he asks students to stop and answer some questions.
①  Controller
②  Assessor
③  Organizer
④  Prompter
【单选题】 What role does a teacher play in the following activity? When students are doing a group-work task, the teacher joins one or two groups for a short period of time.
①  Controller
②  Assessor
③  participant
④  Resource-provider.
【单选题】 What role does a teacher play in the following activity? While doing a writing task either individually or in groups, the students need to use a particular word they don’t know. So they ask the teacher.
①  Controller
②  Assessor
③  participant
④  Resource-provider.
【单选题】 What role does a teacher play in the following activity? T: do you have any hobbies? S: yes, I like singing and dancing. T: Uhm, and...? S: I also collect coins. T: Oh, really, how many...have you already...collected?
①  Controller
②  Assessor
③  Organizer
④  Prompter
【单选题】 What role does a teacher play in the following activity? The teacher writes one of five numbers (1-5) on a number of cards (the same number as the students). Each student draws one card. Those who have drawn number 1 will form group1, and those who have drawn number 2 will form group 2. Thus the students are put into five groups in a random way.
①  Controller
②  Assessor
③  Organizer
④  Prompter.
【单选题】 类 Teacher 和 Student 是类 Person 的子类; Teacher t; Student s; // t and s are all non-null. if (t instanceof Person ){ s=(Student)t; } 最后一条语句的结果是:( )
①  将构造一个Student 对象;
②  表达式是合法的;
③  表达式是错误的;
④  编译时正确, 但运行时错误。
随机题目
【单选题】 使用地址作为实参传给形参,下列说法正确的是()
①  实参是形参的备份
②  实参与形参无联系
③  形参是实参的备份
④  实参与形参是同一对象
【单选题】 在下列成对的表达式中,运算结果类型相同的一对是( )
①  7/2和0/0
②  7/0和7/2
③  0/2和7/2
④  0/0和0/2
【单选题】 在函数定义中的形参属于()
①  全局变量
②  局部变量
③  静态变量
④  寄存器变量
【单选题】 在函数调用时,如某一默认参数要指明一个特定值,则有( )
①  其之前所有参数都必须赋值
②  其之后所有参数都必须赋值
③  其前、后所有参数都必须赋值
④  其前、后所有参数都不必赋值
【单选题】 下列哪个编译指令属于条件编译指令( )
①  #include
②  #define
③  #else
④  #pragma
【单选题】 设存在函数int max(int,int)返回两参数中较大值,若求22,59,70三者中最大值,下列表达式不正确的是( )
①  int m = max(22,max(59,70));
②  int m = max(max(22,59),70);
③  int m = max(22,59,70);
④  int m = max(59,max(22,70));
【单选题】 设有函数T Sum(T x,T y){return x+y;},其中T为模板类型,则下列语句中对该函数错误的使用是( )
①  Sum(1,2);
②  Sum(0,2);
③  Sum(‘A’,‘C’);
④  Sum(A,C);
【单选题】 已知:p是一个指向类A数据成员m的指针,A1是类A的一个对象。如果要给m赋值为5,正确的是()
①  Ap=5;
②  A1->p=5;
③  A*p=5;
④  *Ap=5;
【单选题】 函数默认参数在函数原型中说明,默认参数必须放在参数序列的( )
①  前部
②  中部
③  后部
④  两端
【单选题】 内联函数的特点是( )
①  减少代码量,加快访问速度
②  减少代码量,减缓访问速度
③  增加代码量,减缓访问速度
④  增加代码量,加快访问速度