【单选题】【消耗次数:1】
If you _____ hard, you _____ in the exam.
worked/ wouldn’t have failed
had worked/ wouldn’t fail
had worked/ wouldn’t have failed
worked/ wouldn’t fail
参考答案:
复制
纠错
➡️如需代学继续教育,联系微信:yizhituziang

相关题目
【单选题】 17. If you _____ to me, you wouldn’t be in such trouble now.
①  listened
②  will listen
③  had listened
④  listen
【单选题】 If it _____ for his help, I wouldn’t be a university student now.
①  hasn’t been
②  hadn’t been
③  wasn’t
④  weren’t
【单选题】 Had he worked hard, he _____ the exams.
①  must have got through
②  would have got through
③  would get through
④  could get through
【单选题】 25. Do you remember when Mark and Julie came over and had that terrible row? That was ______ day I wouldn’t want to go through again.
①  the
②  a
③  /
④  one
【单选题】 Wouldn’t it be wise to _____ the possibility of rain before planning the garden party?
①  check in
②  check through
③  check out
④  check on
【单选题】 Who wouldn’t ( ) deal with a human workplace than a crusty, and cold one?
①  like
②  prefer
③  love
④  rather
【单选题】 If he had worked harder, he ___.
①  would succeed
②  had succeeded
③  should succeed
④  would have succeeded
【判断题】 She is under the impression that he isn’t a __genuine____ person for he wouldn’t tell her where and when he went to university.
①  正确
②  错误
【单选题】 — The old man wouldn’ t stay at home for a rest even if it rained. —_____. He would feel sick if he stayed home for one day.
①  So would my grandpa
②  So wouldn’ t my grandpa
③  Neither would my grandpa
④  Nor wouldn’ t my grandpa
【单选题】 9.She does not_____ that she owes the money, but she just wouldn’t like to return it.
①  argue
②  . dispute
③  think
④  agree
随机题目
【判断题】 在C语言程序中,可以使用注释来增强程序的可读性。
①  正确
②  错误
【判断题】 C语言程序主函数的函数名是Main。
①  正确
②  错误
【判断题】 数组a的定义:int a[5][3]={{1,3},{5},{5,6,8}};则该数组共有6个元素。
①  正确
②  错误
【判断题】 C程序开发过程中几个相互衔接的步骤,按顺序依次是:编辑、连接、编译。
①  正确
②  错误
【单选题】 假定有定义为“int m=7, *p;”,则给p赋值的正确表达式为?
①  p=m;
②  p=
③  *p=
④  p=*m;
【单选题】 假定变量m定义为“int ”,则下列定义p的正确语句为?
①  int p=
②  int *p=
③  int
④  int *p=m;
【单选题】 一个指针指向一个数据对象,它保存着该数据对象的地址,若数据对象为DataType类型,则该指针的类型为?
①  DataType *
②  DataType
③  DataType
④  DataType**
【单选题】 假定p是一个指向float型数据的指针,则p+l所指数据的地址比p所指数据的地址大几个字节?
①  1
②  2
③  4
④  8
【单选题】 假定指针变量p定义为“int *p=malloc(sizeof(int));”,要释放p所指向的动态存储空间,应调用的函数为?
①  free(p)
②  delete(p)
③  free(*p)
④  free(p)
【单选题】 下面正确的函数原型语句是?
①  int Function(void a);
②  void Function(int );
③  int Function(a);
④  void;