【单选题】【消耗次数:1】
If only he __________ what I tell him, but he won’t.
had done
would do
would have done
has done
参考答案:
复制
纠错
相关题目
【单选题】 After the student was praised for what he had done, he said:“ I______ even better under harder conditions. ”
①  had done
②  did
③  would have done
④  would do
【判断题】 John has never acted as he should have done. 此句中的“done”替代了“has”.
①  正确
②  错误
【判断题】 ____Unless_____ they can get people in the organization to do what must he done, they will not succeed.
①  正确
②  错误
【单选题】 Is she still angry _______what Tom has done?
①  to
②  with
③  about
【单选题】 They have done things they ought_____.
①  not to do
②  not to be done
③  not to have done
④  not having done
【单选题】 He won’t____ to bring me my umbrella unless I tell him again.
①  forget
②  remind
③  remember
④  realize
【判断题】 判断线上的内容是否正确:____Unless_____ they can get people in the organization to do what must he done, they will not succeed.
①  正确
②  错误
【单选题】 I am very grateful to you for what you’ve given me and __________ you have done for me.
①  which
②  that
③  all what
④  all that
【单选题】 He said he would never be intimidated _____ what he didn’t like by big names and authorities.
①  do
②  to do
③  did
④  into doing
【判断题】 How would you like your steak? The answer will be rare, medium or well done.
①  正确
②  错误
随机题目
【单选题】 在定义int a[5];之后,对a的引用正确的是()。
①  a[5]
②  a[4.3]
③  a(5)
④  a[0]
【单选题】 实现集合运算A&B运算的对应表达式是()
①  A∣B
②  AB
③  A(~(AB))
④  A∣B==B
【单选题】 二进制文件与字符文件不同的是()。
①  二进制文件中每字节数据都没有用ASCII码表示
②  二进制文件包含了ASCII码控制符
③  二进制文件一般以字符\0结束
④  二进制文件用字符endl表示行的结束
【单选题】 按照ANSI/ISO标准,如下main函数声明中正确的是:()
①  voidmain(void)
②  voidmain()
③  intmain()
④  都不对
【单选题】 若有定义int i=1;则执行完循环while(i++〈5);以后i 的值为()
①  6
②  5
③  4
④  7
【单选题】 若有a=2,b=3,则表达式++a==b的值为()
①  0
②  1
③  6
④  3
【单选题】 关于函数模板,描述错误的是()
①  函数模板必须由程序员实例化为可执行的函数模板
②  函数模板的实例化由编译器实现
③  一个类定义中,只要有一个函数模板,这个类就是类模板
④  类模板的成员函数都是函数模板,类模板实例化后,成员函数也随之实例化
【单选题】 下面有关基类和派生类的说法中,错误的是()
①  派生类可以增添一些基类中没有的成员
②  派生类中可出现与基类同名的成员(若是成员函数则参数的个数和类型相同),但会出现同名覆盖现象;若要引用或调用基类中同名的成员,必须用访问域控制符(基类::成员)加以指明
③  派生类可以重载基类中的成员函数
④  派生类可以有选择性地继承基类中的某些成员,删除不需要的成员
【单选题】 类的概念是()
①  对象的抽象。
②  同一类记录的集合。
③  同一类数据的集合。
④  所有对象的集合。
【单选题】 有以下变量说明,下面不正确的赋值语句是() int a=5,b=10,c; int ?p1=&a,?p2=&b;
①  ?p2=b;
②  p1=a;
③  p2=p1;
④  c=?p1?(?p2)。