【判断题】【消耗次数:1】
We wish that you hadnt have such a lot of work, because we know you would have enjoyed the party.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 We are going to have a singing party tonight. Would you like to join us?___________
①  I’m afraid not, because I have to go to an important meeting.
②  Of course not. I have no idea.
③  No, I can’t.
④  That’s all set.
【单选题】 We are going to have a dancing party tonight. Would you like to join us?
①  I’m afraid not. Because I have an appointment with my dentist tonight
②  Of course not. I have no idea
③  No, I can’t
④  That’s all set
【单选题】 A: We are going to have a housewarming party tonight. Would you like to join us? B: [填空].
①  I have no idea.
②  Im afraid not, because I have to visit my parents
③  No, I cant.
④  Thats all set
【单选题】 We’ll _____you as soon as we have any further information.
①  notify
②  signify
③  communicates
④  impart
【单选题】 —We all had a lot of fun at the barbecue ?yesterday. Pity you weren’t there. —I really should have gone with ?you but I _______ on some remaining problems.
①  worked
②  was working?
③  would work
④  would have worked
【单选题】 I wish to have a word with you, _____?
①  do I
②  don’ t I
③  may I
④  did I
【单选题】 At this stage we cannot tell you____ you have been selected for the job or not.
①  unless
②  although
③  whenever
④  whether
【单选题】 We cant [填空] because we dont have wings.
①  fly
②  flies
③  flying
④  flied
【单选题】 ________ you are leaving tomorrow, we can have dinner together tonight.
①  Since
②  While
③  For
④  Before
【单选题】 If you have never planted anything, you won’t be able to know the pleasure of watching the thing you have planted ____.
①  grow
②  to grow
③  growing
④  to be growing
随机题目
【单选题】 执行如下程序代码   a=0;c=0;   do{   --c;   a=a-1;   }while(a>0);   后,c的值是( )
①  0
②  1
③  -1
④  死循环
【单选题】 如下哪个是Java中的合法标识符( )
①  public
②  super
③  3number
④  width
【单选题】 结构化程序设计所规定的三种基本控制结构是 ( )。
①  输入、处理、输出
②  树形、网形、环形
③  顺序、选择、循环
④  主程序、子程序、函数
【单选题】 表达式(12==0) && (1/0 < 1)的值为( ) 。
①  true
②  false
③  0
④  运行时抛出异常
【单选题】 下列关于基本数据类型的说法中,不正确的一项是( ) 。
①  boolean 类型变量的值只能取真或假
②  float 是带符号的 32 位浮点数
③  double 是带符号的 64 位浮点数
④  char 是 8 位 Unicode 字符
【单选题】 下面关于数组声明和初始化的语句那个有语法错误?( )
①  int a1[]={3,4,5};
②  String a2[]={string1,string1,string1};
③  String a3[]=new String(3);
④  int[][] a4=new int[3][3];
【单选题】 下面这些类型的应用,哪个不使用Java语言来编写? ( )
①  JavaScript
②  Applet
③  Servlet
④  Java Swing
【单选题】 在 Java 语言中,哪一个包中的类是自动导入的?( )
①  java.lang
②  java.awt
③  java.io
④  java.applet
【单选题】 下面哪一个循环会导致死循环?( )
①  for (int k = 0; k 0; k--)
②  for (int k = 0; k 0; k++)
【单选题】 下列语句正确的是( )
①  形式参数可被视为local variable 
②  形式参数可被字段修饰符修饰 
③  形式参数为方法被调用时,真正被传递的参数 
④  形式参数不可以是对象