【判断题】【消耗次数:1】
He spends a lot of time play computer games.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 He spent a lot of money [填空] toys and games.
①  buy
②  buying
③  to buy
④  bought
【判断题】 He spends much time watching?TV
①  正确
②  错误
【判断题】 A: Have you been wasting time on computer games again? B: Not really. I’ve been studying a lot and I need a break.
①  正确
②  错误
【单选题】 Bob [填空] playing games.
①  is interested on
②  like doing
③  does well in
④  is good at
【单选题】 3. He admits that playing computer games sometimes____ him ____his study.
①  distracts--from
②  attracts--from
③  distracts--to
④  attracts--to
【单选题】 This stadium has _____ many thrilling football games.
①  seen
②  watched
③  looked at
④  experienced
【单选题】 It ( ) that the kids had spent the whole day playing games.
①  turned up
②  turned out
③  turned off
④  turned on
【单选题】 I liked to play games years ago. [填空].
①  So he was
②  So was he
③  So did he
④  So he did
【单选题】 He and I usually [填空] games at weekends .
①  play
②  plays
③  is playing
④  are playing
【单选题】 It takes a lot of ____ to put on a school play such as King Lear.
①  organization
②  arrangement
③  management
④  preparation
随机题目
【判断题】 目前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) 返回指定位置字符
④  以上全正确
【单选题】 关于Date对象的方法,以下说法错误的是()
①  getDate( )返回的值介于1~31
②  getDay( )返回的值介于1~7
③  getHours( )返回的值介于0~23
④  getMonth( )返回的值介于0~11