java 表达式200<<4的值_java200道选择题已做.doc

java200道选择题已做

一. 选择题(234)

1.下面中哪两个可以在A的子类中使用:( )

class A {

protected int method1 (int a, int b) {

return 0;

}

}

A. public int method 1 (int a, int b) { return 0; }

B. private int method1 (int a, int b) { return 0; }

C. private int method1 (int a, long b) { return 0; }

D. public short method1 (int a, int b) { return 0; }

2.Abstract method cannot be static. True or False ? (A)

A .True B.False

3.What will be the output when you compile and execute the following program.

class Base {

void test() {

System.out.println("Base.test()");

}

}

public class Child extends Base {

void test() {

System.out.println("Child.test()");

}

static public void main(String[] a) {

Child anObj = new Child();

Base baseObj = (Base)anObj;

baseObj.test();

}

}

Select most appropriate answer. A

A. Child.test() Base.test() B. Base.test() Child.test() C. Base.test() D. Child.test()

4.What will be the output when you compile and execute the following program.

class Base {

static void test() {

System.out.println("Base.test()");

}

}

public class Child extends Base {

void test() {

System.out.println("Child.test()");

Base.test(); //Call the parent method

}

static public void main(String[] a) {

new Child().test();

}

}

Select most appropriate answer. C

A. Child.test() Base.test() B. Child.test() Child.test()

C. Compilation error. Cannot override a static method by an instance method

D. Runtime error. Cannot override a static method by an instance method

What will be the output when you compile and execute the following program.

public class Base{

private void test() {

System.out.println(6 + 6 + "(Result)");

}

static public void main(String[] a) {

new Base().test();

}

}

Select most appropriate answer. B

A. 66(Result) B. 12(Result)

C. Runtime Error.Incompatible type for +. Can't convert an int to a string.

D

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值