【单选题】【消耗次数:1】
20. He talks as if he _____the manager here.
were
is
will be
has been
参考答案:
复制
纠错
相关题目
【单选题】 He has been there, [填空]?
①  hasnt he
②  has he
③  does he
④  doesnt he
【单选题】 20. He has received many presents from admirers, from the_____ to the valueless..
①  precious
②  expensive
③  priceless
④  cheap
【单选题】 20. Only when he had handed in his exam paper ____ he had made several mistakes.
①  he has realized
②  does he realize
③  has he realized
④  did he realize
【判断题】 He has been in china for three years.
①  正确
②  错误
【判断题】 Ever since he arrived, he has been complaining constantly about the weather.
①  正确
②  错误
【单选题】 He used to in a small village, but now he has been used to in the big city.
①  live, living
②  live, live
③  living, living
④  living, live.
【单选题】 Its ( ) that he has been away from home.
①  evident
②  important
③  genuine
④  alternative
【单选题】 He has been to Beijing . So [填空] I.
①  have
②  does
③  do
④  did
【单选题】 he park has been built and it will be open _____ three years
①  A. in
②  B.for
③  C.on
④  D.after
【单选题】 She was wondering whether he has been writing anything new ____
①  late
②  later
③  latter
④  lately
随机题目
【单选题】 下面关于类的说法,不正确的是( ) 。
①  类是同种对象的集合和抽象
②  类属于 Java 语言中的复合数据类型
③  类就是对象
④  对象是 Java 语言中的基本结构单位
【单选题】 以下哪个不是Java的原始数据类型( )
①  int
②  Boolean
③  float
④  char
【单选题】 在创建对象时必须( )
①  先声明对象,然后才能使用对象
②  先声明对象,为对象分配内存空间,然后才能使用对象
③  先声明对象,为对象分配内存空间,对对象初始化,然后才能使用对象
④  上述说法都对
【单选题】 以下对封装的描述正确的是( )
①  只能对一个类中的方法进行封装,不能对属性进行封装
②  如果子类继承了父类,对于父类中进行封装的方法,子类仍然可以直接调用
③  封装的意义不大,因此在编码时尽量不要使用
④  封装的主要作用在于对外隐藏内部实现细节,增强程序的安全性
【单选题】 Java 语言类间的继承关系是( ) 。
①  单继承
②  多重继承
③  不能继承
④  不一定
【单选题】 在编写Java Applet程序时,需在程序的开头写上( )语句。
①  import java.awt.* ;
②  import java.applet.Applet ;
③  import java.io.* ;
④  import java.awt.Graphics ;
【单选题】 下列语句哪一个正确( )
①  Java程序经编译后会产生machine code   
②  Java程序经编译后会产生byte code   
③  Java程序经编译后会产生DLL   
④  以上都不正确
【单选题】 下列哪个选项不是Java语言的特点?( )
①  面向对象
②  高安全性
③  平台无关
④  面向过程
【单选题】 下列关于构造方法的叙述中,错误的是( )。
①  Java语言规定构造方法名与类名必须相同
②  Java语言规定构造方法没有返回值,但不用void声明
③  Java语言规定构造方法不可以重载
④  Java语言规定构造方法只能通过new自动调用
【单选题】 以下描述正确的有( )
①  方法的重写应用在一个类的内部
②  方法的重载与返回值类型无关
③  构造方法不能重载
④  构造方法可以重写