【单选题】【消耗次数:1】
There [填空] some chopsticks on the table.
are
is
have
was
参考答案:
复制
纠错
相关题目
【单选题】 There were some ____ flowers on the table.
①  artificial
②  unnatural
③  false
④  unreal
【单选题】 A: Id rather have some tea, if you dont mind. B: [填空].
①  Thank you very much
②  Yes, I like so
③  Of course not, anything you want
④  No, its nothing
【单选题】 There is [填空] on the table.
①  two cups of water
②  some waters
③  some water
④  any waters
【单选题】 There [填空] a box of candies on the table.
①  are
②  is
③  have
④  were
【单选题】 — Would you like to have some icecream?— _______________
①  I don’t know.
②  No,thanks.
③  I dont like it.
④  I like it.
【单选题】 In a room above the store, where a party __________,some workers were busily setting the table.
①  was to be held
②  has been held
③  will be held
④  is being held
【单选题】 Information and opinion gap exercises have to have some content ___ talking about.
①  worthwhile
②  worthily
③  worth
④  worthy
【单选题】 Information and opinion gap exercises have to have some content _____talking about.
①  worthwhile
②  worthily
③  worth
④  worthy
【单选题】 Before the final examination, some students have shown _______ of tension. They even have trouble in sleeping.
①  anxiety
②  marks
③  remarks
④  signs
【单选题】 Before the final examination, many students have shown ___ of tension. Some have trouble in sleeping while others have lost their appetite.
①  anxiety
②  marks
③  signs
④  remarks
随机题目
【判断题】 3306是MySQL数据库服务器的默认端口号。
①  正确
②  错误
【判断题】 目前PDO扩展只可以操作MySQL数据库。
①  正确
②  错误
【判断题】 PRIMARY KEY可以唯一标识表中的某一条记录。
①  正确
②  错误
【单选题】 下列选项中,不属于文本属性的是( )。
①  font-size
②  font-style
③  text-align
④  background-color
【单选题】 页面中有一表单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( ); }
【单选题】 当鼠标指针移到页面上的某个图片时,图片出现一个边框,并且图片放大,这是因为激发了下面的( )事件。
①  onclick
②  onmousemove
③  onmouseout
④  onmousedown
【单选题】 String对象的方法不包括()
①  charAt( )
②  substring( )
③  toUpperCase( )
④  length( )
【单选题】 关于DOM的三个组成部分,其中不包括:()
①  Core DOM
②  XML DOM
③  HTML DOM
④  XHTML DOM
【单选题】 在页面中有一个10行3列的表格,表格的id为Ptable,下面的选项中只删除最后一行的是( )
①  document.getElementById(Ptable).deleteRow(10);
②  var delrow=document.getElementById(Ptable).lastChild;delrow.parentNode.removeChild(delrow);
③  var index=document.getElementById(Ptable).rows.length;document.getElementById(Ptable).deleteRow(index);
④  var index=document.getElementById(Ptable).rows.length-1;document.getElementById(Ptable).deleteRow(index);
【单选题】 对于String对象常用方法,以下描述正确的是:
①  lowerCase( ) 把字符中转化为小写
②  upperCase( ) 把字符中转化为大写
③  charAt(index) 返回指定位置字符
④  以上全正确