【单选题】【消耗次数:1】
How [填空] people are there in your family?
much
many
long
about
参考答案:
复制
纠错
相关题目
【单选题】 How_________ people do you have in your family?
①  much
②  many
③  long
④  far
【单选题】 —How many people are there in Changsha?—About six ______.
①  million
②  millions
③  millions of
【单选题】 —How do you feel about your family life? — .
①  Good. It’s a good choice to work there.
②  Not bad. I think it is a good choice to be a full-time mother.
③  Not bad. I have visited their family a lot of times.
【单选题】 A: How long does it take to get to your house by bus? B: [填空]. I think the tube is your best choice. A: Many thanks.
①  I dont know yet
②  It depends on the traffic
③  Let me see
④  Youll consider the distance
【单选题】 —How long have you been graduated from your college?— .
①  Yes, I’ve been graduated
②  I’ve been graduated for five years
③  I graduated from my college last year
④  I graduat from my college last year
【单选题】 – How long have you been graduated from your college?–
①  Yes, Ive been graduated.
②  Ive been graduated for five years.
③  I graduated from my college last year.
④  yes
【单选题】 People’s status in society is frequently ____ by how much they own.
①  measured
②  examined
③  tested
④  questioned
【单选题】 How much [填空] that pants?
①  are
②  is
③  cost
④  costs
【单选题】 How much [填空] is there in the tin?
①  water
②  orange
③  cakes
④  cake
【判断题】 A:How long does it take to get there? B: About 20 miles.
①  正确
②  错误
随机题目
【单选题】 用户第一次访问服务器时,服务器会在响应消息中增加( )头字段,并将信息发送给浏览器。
①  SetCookie
②  Cookie
③  Set-Cookie
④  以上答案都不对
【判断题】 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);