【单选题】【消耗次数:1】
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? 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? 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? 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? 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 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 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 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.
【单选题】 Which type does the following production practice belong to? The students repeat what the teacher says. This activity can practice individual sounds, individual words, groups of words, and sentences.
①  Listen and repeat
②  Fill in the blanks
③  Make up sentences
④  Using meaningful context
【单选题】 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.
【单选题】 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
随机题目
【单选题】 设有 int x=11; 则表达式 (x++ * 1/3) 的值是().
①  3
②  4
③  11
④  12
【单选题】 C语言中的简单数据类型有()
①  整型、实型、逻辑型
②  整型、实型、字符型
③  整型、字符型、逻辑型
④  整型、实型、字符型、逻辑型
【单选题】 已知inta[4][4]={{1,2},{3},{4},{1,2,3}};问a[2][0]该元素的值是()
①  2
②  3
③  4
④  1
【单选题】 用C语言编写的源程序经过编译后,若没有产生编译错误,则系统将()。
①  生成可执行文件
②  生成目标文件
③  输出运行结果
④  自动保存源文件
【单选题】 排序是计算机内经常进行的一种操作,其目的是()
①  将一组无序的记录序列调整为有序的记录序列。
②  将一组有序的记录序列调整为无序的记录序列。
③  将一组交错的记录序列调整为有序的记录序列。
④  将一组交错的记录序列调整为无序的记录序列。
【单选题】 定义字符数组charclassname[100];接收从键盘输入的班级名称,下面语句正确的是()
①  scanf(%c,classname)
②  scanf(%s,classname);
③  Scanf(%c,classname);
④  Scanf(%s,classname);
【单选题】 若变量已正确说明为int类型,要给a,b,c输入数据,以下语句正确的是()
①  read(a,b,c);
②  scanf(%d%d%d,a,b,c);
③  scanf(%D%D%D,a,%b,%c);
④  scanf(%d%d%d,a,b,c);
【单选题】 求多个数的和值,一般我们设置和值变量的初始值是()。
①  0
②  1
③  2
④  3
【单选题】 下面是对字符数组str 的初始化语句,其中不正确的是()。
①  char str[5]={abcd};
②  char str[5]={’a’,’b’,’c’,’d’};
③  char str[]=abcd;
④  char str[5];str=abcdef;
【单选题】 以下程序的输出结果是()。 main( ) { int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i for(j=i;j t=t+b[i][b[j][j]]; printf(%d\n,t); }
①  3
②  4
③  1
④  9