【单选题】【消耗次数:1】
She has always been quick to pick things up, doing ( ) well in school without really trying.
passably
passable
passenger@passage
参考答案:
复制
纠错
相关题目
【判断题】 What?has she doing?
①  正确
②  错误
【判断题】 Has she been listening? Yes, she has./ No, she hasn’t.
①  正确
②  错误
【单选题】 24. The kind-hearted woman always tries to help others, but recently she has been ____kind and generous.
①  chiefly
②  specially
③  principally
④  especially
【单选题】 I _______ sleep very well, but then I started doing yoga and it really helps.
①  didn’t use to
②  used to
③  was used to
④  wasn’t used to
【单选题】 ( ) badly she had slept she was always up early the next day.
①  No matter what
②  Whether
③  No matter how
④  How
【单选题】 ____ you know, David has been well lately.
①  Which
②  As
③  What
④  When
【单选题】 She was wondering whether he has been writing anything new ____
①  late
②  later
③  latter
④  lately
【单选题】 It has always been the ___ of our firm to encourage workers to take part in social activities.
①  plan
②  campaign
③  procedure
④  policy
【单选题】 Information has been put forward ___ more middle school graduates will be admitted into universities.
①  while
②  that
③  when
④  as
【单选题】 —Our son has picked up some bad habits recently, and I am really worried about it.— .
①  Yes, they have some bad habits.
②  Cheer up. I believe he will overcome it.
③  Well, he like drawing.
随机题目
【单选题】 以下不属于select对象常用属性的是
①  onchange
②  length
③  selectedIndex
④  options
【单选题】 以下选项中,( )可以打开一个无状态栏,无工具栏、有滚动条的页面。
①  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)
【单选题】 要在网页的状态栏中显示“已经选中该文本框”,下列JavaScript语句正确的是是( )。
①  window.status=已经选中该文本框;
②  document.status=已经选中该文本框;
③  window.screen=已经选中该文本框;
④  document.screen=已经选中该文本框;
【单选题】 在JavaScript中,对字符串str=welcome to my home进行以下操作,描述正确的是( )。
①  str.substring(1,6)返回值是welco
②  str.length返回值为18
③  str.indexOf(come)返回值为4
④  str.toUpperCase( )的值为“Welcome To My Home”。
【单选题】 setTimeout(buy( ),20)表示的意思是( )。
①  间隔20秒后,buy( )函数被调用一次
②  间隔20分钟后,buy( )函数被调用一次
③  间隔20毫秒后,buy( )函数被调用一次
④  buy( )函数被持续调用20次
【单选题】 以下不属于window对象的常用方法有:()
①  prompt
②  alert
③  confirm
④  location
【单选题】 关于history对象的常用方法,以下说法正确的是()
①  back()用于加载前一个url
②  forward()用于加载下一个url
③  go()用于加载某个指定的url
④  以上说法均正确
【单选题】 下面选项中,( )能够获取滚动条距离页面顶端的距离。
①  onscroll
②  scrollLeft
③  scrollTop
④  top
【单选题】 关于正则表达式中的重复字符,以下说法正确的是
①  * 代表匹配前一项0次或多次
②  + 代表匹配前一项1次或多次
③  ? 代表匹配前一项0次或1次
④  以上全部正确
【单选题】 在JavaScript中,运行下面的代码,sum的值是( )。 var sum = 0; for(i = 1; i < 10; i++) { if(i%5==0) break; sum = sum + i; }
①  40
②  50
③  5
④  10