【单选题】【消耗次数: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 对象;
②  表达式是合法的;
③  表达式是错误的;
④  编译时正确, 但运行时错误。
随机题目
【单选题】 页面中有一表单myform,表单中有名为txtEmail的输入电子邮件文本框,则以下验证电子邮件格式必须包含点符号(.)代码正确的是( ).(选择 一项)(选择一项)
①  var strEmail = document.myform.txtEmail.value; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
②  var strEmail = document.myform.txtEmail.text; if(strEmail.indexOf(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
③  var strEmail = document.myform.txtEmail.value; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
④  var strEmail = document.myform.txtEmail.text; if(strEmail.concat(.,0)==-1){ alert(电子邮件格式不正确\n必须包含点符号! document.myform.txtEmail.focus( ); }
【多选题】 下列( )可以使窗口显示前一个页面(选择二项)
①  back( )
②  forward( )
③  go(1)
④  go(-1)
【多选题】 下列选项中,( )可以打开一个无状态栏的页面。(选择二项)
①  window.open(advert.html
②  window.open(advert.html,广告,toolbar=1,scrollbars=0,status=1
③  window.open(advert.html,,scrollbars=1,location=0,resizable=1
④  window.open(advert.html,,toolbars=0, scrollbars=1, location=1, status=no
【多选题】 在JavaScript中,下列方法中相当于客户端点击F5(刷新)的是()(选择二项)
①  document.replace( );
②  document.reload( );
③  location.replace(location.href);
④  location.reload( );
【单选题】 下面( )可实现刷新当前页面。(选择一项)
①  reload( )
②  replace( )
③  href
④  referrer
【单选题】 有如下JavaScript代码,运行后页面文档背景色为蓝色,要实现该效果,横向处应填写( )。script language=JavaScriptfunction change( ){ document.______=blue}/scriptbody onload=change( )/body(选择一项)
①  bgColor
②  backgroud
③  color
④  background-color
【单选题】 在javascript浏览器对象模型中,window对象的( )属性用来指定浏览器状态栏中显示的临时消息。(选择一项)
①  status
②  screen
③  history
④  document
【单选题】 以下选项中,( )可以打开一个无状态栏,无工具栏、有滚动条的页面。(选择一项)
①  window.open(adv.html
②  window.open(adv.html,广告,toolbar=0,scrollbar=0,status=1)
③  window.open(adv.html,广告,toolbar=1,scrollbar=1,status=0)
④  window.open(adv.html,广告,toolbar=0,scrollbar=1,status=0)
【单选题】 下面( )不是document对象的方法。(选择一项)
①  getElementsByName( )
②  getElementById( )
③  write( )
④  reload( )
【单选题】 有如下JavaScript代码: .... script language=JavaScript var x = true; document.write(x); /script .....页面运行后,输出( )。(选择一项)
①  1
②  0
③  true
④