【单选题】【消耗次数:1】
6.The stepmother was advised against ______ between her own son and the stepdaughter.
love
favor
favorite
favoritism
参考答案:
复制
纠错
相关题目
【单选题】 When my own son was five years old, I became ( )for another baby.
①  eager
②  desire
③  yearn
④  wish
【判断题】 Newspapers stuff between the layers as further protection against bad weather.
①  正确
②  错误
【单选题】 She is filled with ( )for her own college days.
①  nostalgic
②  nostalgy
③  nostalgia
④  remember
【单选题】 Her mother’ s words of love and help____ the sobbing child.
①  comforted
②  encouraged
③  excited
④  eased
【单选题】 11.In general she is amiable, but ______she is not her own self.
①  in time
②  on time
③  at times
④  by time
【单选题】 6.The university has introduced a new _______ of conduct on university life.
①  discipline
②  . code
③  key
④  . principle
【单选题】 “I love you” is never a touch on lightly; its the signal ______ a romantic relationship is serious,or an indication of closeness between parents and children.
①  that
②  why
③  when
④  whether
【单选题】 6.The old lady fainted on the street and found herself in the first aid room when she came_________.
①  across
②  over
③  in
④  to
【单选题】 8.She no longer has that______ smile as before, but instead carries the sad look of a mother who has just lost her son.
①  careless
②  carefree
③  interested
④  sick
【单选题】 Could you ____ me a favor by shutting the door?
①  do
②  help
③  get
④  give
随机题目
【单选题】 类 Teacher 和 Student 是类 Person 的子类; Teacher t; Student s; // t and s are all non-null. if (t instanceof Person ){ s=(Student)t; } 最后一条语句的结果是:( )
①  将构造一个Student 对象;
②  表达式是合法的;
③  表达式是错误的;
④  编译时正确, 但运行时错误。
【单选题】 下列程序段执行后的结果是( )。 String s = new String(abcdefg); for (int i=0; i<s.length(); i+=2){ System.out.print(s.charAt(i)); }
①  aceg
②  ACEG
③  abcdefg
④  abcd
【单选题】 阅读以下代码: import java.io.*; import java.util.*; public class foo{ public static void main (String[] args){ String s; System.out.println(s= + s); } } 输出结果应该是:( )
①  代码得到编译,并输出“s=”
②  代码得到编译,并输出“s=null”
③  由于String s没有初始化,代码不能编译通过
④  代码得到编译,但捕获到 NullPointException异常
【单选题】 访问修饰符作用范围由大到小是( )
①  private-default-protected-public
②  public-default-protected-private
③  private-protected-default-public
④  public-protected-default-private
【单选题】 有以下方法的定义,请选择该方法的返回类型( )。 ReturnType method(byte x, double y) { return (short)x/y*2; }
①  byte
②  short
③  int
④  double
【单选题】 有一段java 应用程序,它的主类名是a1,那么保存它的源文件名可以是( )
①  a1.java
②  a1.class
③  a1
④  都对
【单选题】 为AB类的一个无形式参数无返回值的方法method书写方法头,使得使用类名AB作为前缀就可以调用它,该方法头的形式为( )。
①  static void method( )
②  public void method( )
③  final void method( )
④  abstract void method( )
【单选题】 编译Java源程序文件将产生相应的字节码文件,这些字节码文件的扩展名为( )。
①  .byte
②  .class
③  .html
④  .exe
【单选题】 下面哪个函数是public void method(){ }的重载函数?( )
①  public void method( int m){ }
②  public int method(){ }
③  public void method2(){ }
④  public int method(int m,float f ){ }
【单选题】 在使用interface声明一个接口时,只可以使用( )修饰符修饰该接口。
①  private
②  protected
③  private protected
④  public