【单选题】【消耗次数:1】
There isnt any difference between the two. I really dont know _________.
where to choose
which to choose
to choose what
to choose which
参考答案:
复制
纠错
相关题目
【单选题】 There isnt any difference between the two. I really dont know ____.
①  where to choose
②  which to choose
③  to choose what
④  to choose which
【单选题】 For formal English we’d better choose _______.
①  peculiar words
②  obsolete words
③  words of intensity
④  peculiar idioms
【单选题】 For formal English, we’d better NOT choose_______.
①  words of glorification
②  verbs of action
③  words of strength
④  peculiar words
【单选题】 You may choose anyone from the six popular [填空] of ice cream!
①  flavors
②  flavor
③  flavoring
④  favor
【判断题】 The most notable language variation is at the level of words people choose --- lexical variation.
①  正确
②  错误
【单选题】 — Could you please help me choose an Mp4 player online?— ________. My computer doesn’t work.
①  I don’t agree
②  I hope so
③  I’m afraid I can’t.
④  i did
【判断题】 The semicolon is used between two coordinate clauses which are not linked by a conjunction.
①  正确
②  错误
【单选题】 She took it as an insult which wasn’t at all what I( ).
①  intend
②  intended
③  has intended
④  had intended
【单选题】 It is no good ___________ to know what you dont know.
①  pretend
②  to pretend
③  pretending
④  pretends
【单选题】 All of us think it difficult to ____ the difference between the two things.
①  talk
②  speak
③  lecture
④  tell
随机题目
【单选题】 定义外部类的类头时,不可用的关键字是( ) 。
①  public
②  final
③  protected
④  abstract
【单选题】 关于运算符>>和>>>描述正确的是( )
①  >>执行移
②  >>执行翻转
③  >>执行有符号左移,>>>执行无符号左移
④  >>执行无符号左移,>>>执行有符号左移
【单选题】 下列关于 Application 和 Applet 程序的说法中不正确的一项是( ) 。
①  Application 使用解释器 java.exe
②  Application 不使用独立的解释器
③  Applet 在浏览器中运行
④  Applet 必须继承 Java 的 Applet 类
【单选题】 应用程序的main方法中有以下语句,则输出的结果是 ( )。 String s1=new String(abc); String s2=new String(abc); boolean b1=s1.equals(s2); boolean b2=(s1==s2); System.out.print(b1+ +b2);
①  true false
②  false true
③  true true
④  false false
【单选题】 main方法是Java应用程序执行的入口点,关于main方法的方法头以下哪项是合法的?( )
①  public static void main()
②  public static void main( String[] args )
③  public static int main(String [] arg )
④  public void main(String arg[] )
【单选题】 给出下面代码段, 哪行将引起一个编译时错误?( ) 1) public class Test { 2) int n = 0; 3) int m = 0; 4) public Test(int a) { m=a; } 5) public static void main(String arg[]) { 6) Test t1,t2; 7) int j,k; 8) j=3; k=5; 9) t1=new Test(); 10) t2=new Test(k); 11) } 12) }
①  行1
②  行4
③  行6
④  行9
【单选题】 有一个类 B,下面为其构造方法的声明,正确的是( ) 。
①  void B int (x) { }
②  B int (x) { }
③  b int (x) { }
④  void b int (x) { }
【单选题】 在Java中,一个类可同时定义许多同名的方法,这些方法的形式参数个数、类型或顺序各不相同,传回的值也可以不相同。这种面向对象程序的特性称为( )。
①  隐藏
②  覆盖
③  重载
④  Java不支持此特性
【单选题】 区分类中重载方法的依据是( ) 。
①  形参列表的类型和顺序
②  不同的形参名称
③  返回值的类型不同
④  访问权限不同
【单选题】 下面语句在编译时不会出现警告或错误的是( )
①  float f=3.14;
②  char c=”c”;
③  Boolean b=null;
④  int i=10.0;