【判断题】【消耗次数:1】
She often looks after her grandmother.
正确
错误
参考答案:
复制
纠错
相关题目
【单选题】 Mary looks unhappy because she has ______ by her classmates.
①  laughed at
②  been laughed
③  laughed
④  been laughed at
【单选题】 She often says her greatest happiness ____ serving the handicapped children.
①  relies on
②  consists in
③  composes of
④  comprises in
【单选题】 She often says her greatest happiness _____serving the handicapped children.
①  relies on
②  consists in
③  composes of
④  comprises in
【判断题】 The girl is made to do her homework right after she comes from school.
①  正确
②  错误
【单选题】 15. She suffered great mental_____ after her husband died, and as a result she became mad.
①  anger
②  . discomfort
③  unhappiness
④  anguish
【判断题】 答题说明:句子没有语法错误请选择“正确”,有语法错误请选择“错误”She kept weeping, while she calling her lovers name.
①  正确
②  错误
【判断题】 She often go to Nanjing.
①  正确
②  错误
【单选题】 Everybody likes her because she is always _______ .
①  Everybody likes her because she is always _______ .
②  cheerful
③  sad
④  selfish
【单选题】 _______ she tried her best, she didn’t succeed.
①  Though
②  When
③  If
④  After
【单选题】 Does Tim often play [填空] basketball after [填空] school?
①  /,/
②  /,the
③  the,/
④  a,//
随机题目
【单选题】 Java 类可以作为( )。
①  类型定义机制
②  数据封装机制
③  类型定义机制和数据封装机制
④  上述都不对
【单选题】 定义外部类的类头时,不可用的关键字是( ) 。
①  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不支持此特性
【单选题】 区分类中重载方法的依据是( ) 。
①  形参列表的类型和顺序
②  不同的形参名称
③  返回值的类型不同
④  访问权限不同