【单选题】【消耗次数:1】
He [填空] here a minute ago.
come
came
comes
has come
参考答案:
复制
纠错
相关题目
【单选题】 A: Bill told me he could not come here because his father was ill. B: [填空]
①  Its good.
②  Thats bad.
③  He is impolite.
④  What a pity!
【单选题】 He ____ have left the campus, for I saw in the classroom just a minute ago
①  mustn’t
②  shouldn’t
③  couldn’t
④  oughtn’t
【单选题】 A: Where does he come from? B: [填空], but her accent suggests Beijing.
①  Im sure
②  Im not sure
③  Perhaps
④  Maybe
【判断题】 A: How come you are working here? B: By bus and then on foot.
①  正确
②  错误
【单选题】 He can come any day ____ Friday.
①  besides
②  but
③  on
④  in
【单选题】 Tom can’t come _____ he is ill.
①  because
②  if
③  so
④  whether
【单选题】 They come from different [填空].
①  country
②  countries
③  a country
④  countrys
【单选题】 “ Has he seen this film ? ” “Yes. He _________ it several days ago.”
①  saw
②  has seen
③  had seen
④  was seeing
【判断题】 A: Why didnt you come here earlier? B: Thats a good idea.
①  正确
②  错误
【单选题】 Since you have already come, you _____ stay here for a couple of days.
①  might well
②  might as well
③  might have to
④  might
随机题目
【多选题】 关于C语言,在下列说法中,正确的是()
①  每个语句必须独占一行,语句的最后可以是一个分号,也可以是一个回车换行符号
②  每个函数都有一个函数头和一个函数体,主函数也不例外
③  主函数可以调用用户函数或系统函数,用户函数可以相互调用
④  程序是由若干个函数组成的,但是必须有、而且只能有一个主函数
【多选题】 函数分类中,从函数定义的角度,函数分为()
①  库函数
②  无参函数
③  有参函数
④  自定义函数
【多选题】 if(表达式){}这段代码在程序中的表达式可以出现的形式为()。
①  算术表达式
②  关系表达式
③  逻辑表达式
④  数值0或1
【多选题】 在C语言中,以下关于预处理的叙述中正确的是()
①  在程序中凡是以#开始的语句行都是预处理命令行
②  预处理命令行的最后不能以分号表示结束
③  #define MAX是合法的宏定义命令行
④  C程序对预处理命令行的处理是在程序执行的过程中进行的
【多选题】 变量能解决的问题,下列选项描述正确的是()。
①  节省空间
②  以根据程序的执行,用到不同的数值,求出程序要在某个语句下所得出的正确结果
③  占用更多空间
④  加快程序的执行
【多选题】 判断一个是否大于另一个数,输出大数,可以通过选择结构里的()来实现。
①  单分支
②  双分支
③  多分支结构
④  循环结构
【多选题】 下面关于switch结构中default使用说法不正确的是()。
①  switch结构中的default是注释语句
②  default与case语句的顺序是任意的
③  default是在所有case都不执行的情况下才能被执行到
④  default在switch结构中可以省略
【多选题】 设已定义charx[8]和intj为了给该数组赋值,下面语句中错误的是:()
①  x[8]=TurboC
②  x=TurboC
③  x[]=TurboC
④  for(j=0;j7;j++)x[j]=getchar()
【多选题】 算法的设计方法有很多,常用的算法方法有以下哪些()。
①  递推算法
②  迭代算法
③  穷举算法
④  冒泡排序算法
【多选题】 若有说明int a[3][4];则对a数组元素的引用不正确是()
①  a[2][4]
②  a[1,3]
③  a[1+1][0]
④  a(2)(1)