【单选题】【消耗次数:1】
By the end of next month we _____this assignment.
will finish
will be finishing
will have finished
have finished
参考答案:
复制
纠错
相关题目
【单选题】 By the end of next month we ____ this assignment.
①  will finish
②  will be finishing
③  will have finished
④  have finished
【判断题】 By the end of this term, they will have finished learning English 3.
①  正确
②  错误
【单选题】 15.—Have you finished your report ? ---No, I will finish it in _____20 minutes.
①  other
②  another
③  more
④  less
【判断题】 I have finished the book.
①  正确
②  错误
【单选题】 I have_______ finished the homework.
①  yet
②  already
③  still
【单选题】 Next month, I_______ plan to have a holiday.
①  am
②  /
③  have
【判断题】 The construction of the building will have completed by the end of this month.
①  正确
②  错误
【单选题】 By the end of next month he ____ everything in school.
①  will finish
②  will have finished
③  finishes
④  would finished
【单选题】 When you have finished with that video tape, don’t forget to put it in my drawer, ---_____?
①  do you?
②  will you
③  can you
④  dont
【单选题】 Don’t worry. We have _______ to finish the work carefully.
①  enough time
②  less time
③  little time
④  few times
随机题目
【判断题】 Java语言中,构造方法是不可以继承的。
①  正确
②  错误
【单选题】 关于以下程序代码的说明正确的是( ) 1.class HasStatic{ 2. private static int x=100; 3. public static void main(String args[ ]){ 4. HasStatic hs1=new HasStatic( ); 5. hs1.x++; 6. HasStatic hs2=new HasStatic( ); 7. hs2.x++; 8. hs1=new HasStatic( ); 9. hs1.x++; 10. HasStati@@x- -; 11. System.out.println(“x=”+x); 12. } 13. }
①  5行不能通过编译,因为引用了私有静态变量
②  10行不能通过编译,因为x是私有静态变量
③  程序通过编译,输出结果为:x=103
④  程序通过编译,输出结果为:x=102
【判断题】 说明或声明数组时不分配内存大小,创建数组时分配内存大小。
①  正确
②  错误
【判断题】 构造函数用于创建类的实例对象,构造函数名应与类名相同,返回类型为void。
①  正确
②  错误
【判断题】 类中说明的方法可以定义在类体外。
①  正确
②  错误
【判断题】 Java语言中,所创建的子类都应有一个父类。
①  正确
②  错误
【判断题】 类是一种类型,也是对象的模板。
①  正确
②  错误
【判断题】 Java语言使用的是Unicode字符集,每个字符在内存中占8位。
①  正确
②  错误
【判断题】 静态初始化器是在其所属的类加载内存时由系统自动调用执行。
①  正确
②  错误
【判断题】 int intArray[]={0,2,4,6,8}; int length=int Array.length();
①  正确
②  错误