JAVA 测试I

JAVA EXAM 1---25


JAVA 测试I http://www.jianshu.com/p/76b36d18844d
JAVA 测试II http://www.jianshu.com/p/e7f7d29b185a
JAVA 测试III http://www.jianshu.com/p/64d3495989a5

1

public class Test {
    public void main(){
        System.out.println("Hi");
    }

    public static void main (String [] args)
    {
        Test t=new Test();
        t.main();
    }
}

What will be happen if you compile and run above code?

  1. It will not compile
  2. It will not run
  3. It will compile but will not run
  4. It will output “Hi”

ANS: 4, 因为两个函数参数不同, 属于函数重载. 函数重载只考虑参数问题.

2

After execution of the code fragment below, what are the value of the variables x1, y1, and z1?

int x=10; int y =10; int z=10; int x1, y1, z1;
x1=++y;  //x1 = 11
y1=z++;  //y1 = 10
z1=z;    // z1 = 11

Choose the one below:

  1. x1 = 10 , y1 = 10 and z1=10
  2. x1 = 10, y1 = 11, and z1=10
  3. x1=10, y1 = 10, and z1=11
  4. x1=11, y1=10, and z1=11

选4

3

What will be the output?

public class Test {
    public int addTest(int x, int y) {
        x = x + 1;
        y = y + 1;
        int z = (x + y);
        return z;
    }

    public static void main(String[] args) {
        int x = 10;
        int y = 10;
        int z = 0;
        Test t = new Test();
        z = t.addTest(x, y);
        System.out.println("x =" + x + ",y =" + y + ",z = " + z);

    }
}

Choose the one below:

  1. x=10, y=10, z=22
  2. x=11, y=11, z=22
  3. x=10, y=10, z=20
  4. x=11, y=11, z=20

选1, 因为函数传的是☞, 不是地址.

4

What will be the output of the program.?
Assume that MyList class is declared in MyList.java
and ListManager class is declared in ListManager.java file.

public class Test {
    int size = 1;
    public static void main(String[] args)
    {
        Test list = new Test();
        list.size = 10;
        ListManager lm = new ListManager();
        lm.expandList(list);
        System.out.println("list.size = " + list.size);
    }
}  //end of MyList

public class ListManager {
    public void expandList(Test l)
    {
        l.size = l.size + 10;
    }
}

Choose the one below:

  1. size=0
  2. size=10
  3. size=11
  4. size=20

选4, 因为传的是类, 属于址传递.

5

If int x = -1 then which of the following expression results in a positive value in x?

  1. x=x>>>32 // --> -1
  2. x=x>>>5 // --> 134217727
  3. x=x>>5 // ---> -1
  4. x=~x // ---> 0

选2, 因为>>>是无符号右移,空位补0, -1的二进制是32个1, >>是有符号右移空位补符号位-1的符号位是1,4不正确, 题目是问正数.

6

6 . Which of the following lines of code would print “Equal” when you run it?

  1. int x=1; float y=1.0F; if(x==y){ System.out.println("Equal");} //Equal
  2. int x=1; Integer y= new Integer(1); if(x==y) {System.out.println("Equal");} // Equal
  3. Integer x=new Integer(1); Integer y=new Intger(1); if(x==y){ System.out.println("Equal");} //不输出
  4. String x="1"; String y="1"; if (x==y) { System.out.println("Equal");} //Equal

1 2 4都会输出 Equal,

7

Which of the following declarations are correct for the top level class?

  1. public synchronized class MyTest extends Thread
  2. private class MyTest extends Thread
  3. public abstract class MyTest extends Thread
  4. class MyTest extends Thread

选择3, 4

8

Consider the following lines of code:

public class Test {
    String x;

    public void testDemo(int n) {
        String y;
        if (n > 0) {
            y = "Hello";
        }
        System.out.println(x + y);
    }

    public static void main(String[] args) {
        Test test = new Test();
        test.testDemo(2);
    }
}  //end of MyList
  1. It will produce compiler warning that variable y may not have been initialized
  2. It will produce compiler warning that variable x may not have been initialized
  3. It will output “Hello”
  4. It will output “nullHello”

选2, 因为没有初始化y,编译失败

9

Consider that Parent and Child classes are defined in two different files as below:

class Parent {
    public Parent() {
        System.out.println("I am Parent");
    }
}

class Child extends Parent {
    public Child(int x) {
        System.out.println("I am Child");
    }

    public static void main(String[] args) {
        Child c = new Child(10);
    }
}
  1. It will not compile.
  2. It will compile successfully. It will output “I am Parent” and then “I am Child.”
  3. It will compile successfully. It will output “I am Child” and then “I am Parent.”
  4. It will compile successfully, but will not run.

这个题目有问题, Child和Parent首先得在一个包,第二Child类前得有public才能运行.
所以,要么编译成功,输出2, 要么编译成功但不会输出选4,

10

Consider following code:

import java.util.Vector;
public class Test {
    static int size;
    public expandList(int newSize) {
        ListExpander lexp = new ListExpander();
        Vector expandedList = lexp.expand();
        class ListExpander {
            public Vector expand() {
                Vector v = new Vector(this.size + newSize);
                return v;
            }
        }
    }
}
  1. compiler error, “cannot refer inside an inner class to a static variable.”
  2. compiler error, “cannot refer inside an inner class to to a non-final variable newSize defined in a different method.”
  3. Both of the above
  4. None of the above

如果expandList函数前有返回类型, 那么就选2 newSize需要声明为final类型, 如果没有,就选4

11

Consider following code:

public class Parent{
    public  int size =0;
    static class InnerClass{
        public void incrementParentSize(){
            XXX=XXX+10;
        }
    }
}

In above code, how can you access ‘size’ variable (of outer class Parent) inside innerclass at the place of ‘XXX’ ?

  1. super.size
  2. this.size
  3. Parent.size
  4. Can not access it`

选4, 静态内部类无法访问非静态成员, super是父类, this是当前类

12

Assume that Parent and Child classes are in different files:

public class Parent {
    public Parent(int x, int y)
    {
        System.out.println("Created Parent");
    }

}//end of Parent class

public class Child extends Parent {
    public Child(int x, int y) {
        super(x, y);
    }

    public Child(int x, int y, int z) {
        System.out.println("Creating child");
        this(x, y);
    }
    public static void main(String[] args) {
        Child c = new Child(1, 2, 3);
    }
}

What will happen if you try to compile and run above program?

  1. It will compile successfully. It will output “Created Parent” and then “Creating child”
  2. It will compile successfully. It will output “Creating child” and then “Created Parent”
  3. It will not compile giving warning, “Explicit constructor invocation must be first statement in constructor.”
  4. It will not compile giving warning, “Expression is not a valid block statement.”

一定不会编译的,选3, 4

13

Consider following code:

public class OuterClass{
    class InnerClass{
    }
    public void innerClassDemo(){
        //Explicit instance of InnerClass
    }
}

In above code, how can you explicitly create an instance of InnerClass?

  1. InnerClass i=InnerClass();
  2. InnerClass i=OuterClass.InnerClass();
  3. InnerClass i=new OuterClass ().new InnerClass();
  4. InnerClass i=new OuterClass.InnerClass();

前两个都没有new关键字, 选3, 4

14

Please select valid(有效) array declaration(s):

  1. int x[20];
  2. int []x=new int[20];
  3. int [][] x=new int [20][];
  4. int [][][] x=new int[20][20][20];
  5. int [] x={1,2,3};

2, 3, 4, 5都正确, 1错误

15

Consider following code:

public class Test {
    protected void demo() throws NumberFormatException, ArrayIndexOutOfBoundsException {
        //something here
    }
    public void demo(String s) {
        //something here
    }
}//end of Test class

Please select true statement(s) for demo code?

  1. It is an example of overloading method
  2. It is an example of overriding method
  3. Both of the above
  4. None of the above

选1, 方法重载, overloading

16

For the following code, please consider that super class is defined in question #15:

class MyTest extends Test {
    private void demo() throws IndexOutOfBoundsException, ClassNotFoundException
    {
        //something here
    }
}//end of MyTest class

What will happen if you try to compile above code ?

  1. It will compile successfully.
  2. Compiler error: Exception java.lang.ClassNotFoundException in throws clause of void MyTest.demo() is not compatible with void Test.demo().
  3. Compiler error: Cannot reduce visibility of the inherited method from Test.
  4. Both B and C

选4, MyTest中的demo()无法覆盖Test中的demo()
正在尝试分配更低的访问权限; 以前为protected

17

Consider the following code:

public class Test {
    public void demo(String[] list) {
        try {
            String s = list[list.length + 1];
            System.out.println(s);
        } catch (ArrayIndexOutOfBoundsException e) {
            return;
        } finally {
            System.out.println("Finally here.");
        }
    }
    public static void main(String[] args) {
        Test t = new Test();
        String[] list = {"one","two"};
        t.demo(list);
        System.out.println("Done !");
    }
}//end of Test class

What happen if you try compile and run above code ?

  1. It will not compile.
  2. It will output “null” and then “Finally here.”
  3. It will output “Done!”
  4. It will output “Finally here” and then “Done!”

选4, 遇到catch里面return的时候,不执行,finally一定会执行!

18

Please consider following code:

public class Test{
    public static void demo(String s)
    {
      debug("In demo:"+s);
    }
    private void debug(String s){
        System.out.println(s);
    }
    public static void main(String [] args){
        Test.demo(“Hello”);
    }
}

What will happen if you try to compile and run above code ?

  1. It will compile successfully, but will not run.
  2. It will compile successfully, and outputs “In demo:Hello.”
  3. It will not compile with error message “Can not make a static reference to the instance method named.”
  4. None of the above

选3, 静态方法不能调用非静态方法

19

Consider the following code:

/**
 * File Drawable.java
 */

public interface Drawable {

    public void draw();

    public void fill();

} /**
 * End of file Drawable.java
 */

/** File Circle.java */
public class Circle implements Drawable {
    int center=0;
    public void draw(){
        System.out.println(“Drawing circle”);
    }
    public static void main(String [] args){
        Circle c=new Circle();
        c.draw()
    }
} /** End of file Circle.java */

If you attempt to compile and run Circle class what will be output?

  1. It will compile successfully, and outputs “Drawing circle.”
  2. It will not compile, and reports error: “class Circle must implement inherited abstract method void Drawable.fill.”
  3. It will not compile, and reports error: “Method Drawable.fill requires a body instead of a semicolon.”
  4. None of the above

选2, 因为只实现了接口的一个方法.

20

What will be the output?

int x=2; int y=3; int z=4;
if(x>2){
    System.out.println(“Tested x”);
}if(y<3){
   System.out.println(“Tested y”);
}if (z<=3){
   System.out.println(“Tested z”);
}

Choose the one below:

  1. Tested x.
  2. Tested y.
  3. Tested z.
  4. None of the above.

选4

21

Consider the following code:

for(int i=0;i<2;i++)
{
    for(int j=i;j<3; j++)
    {
        if (i==j)
        {
            continue;
        }
        System.out.println("i="+i+" j="+j);
    }
}

Which lines would be part of the output?

  1. i = 0 j = 1
  2. i = 0 j = 2
  3. i = 1 j = 2
  4. None of the above

选1 2 3,

22

Consider the following code:

int j=0;
for( int i=0;i<2;i++)
{
    for (j=i; j<3; j++)
    {
        continue;
    }
    System.out.println(“i = “+i+” j = “+j);
}

Which lines would be part of the output?

  1. i = 0 j = 0
  2. i = 1 j = 1
  3. i = 0 j = 3
  4. i = 1 j =3

选3 4

23

Consider the following code:

int i=0; int j=0;
for( i=0;i<2;i++)
{
    for (j=i; j<3; j++)
    {
        break;
    }
    System.out.println("i = "+i+" j = "+j);
}
```
Which **lines** would be part of the output?
1. i = 0 j = 0
2. i = 1 j = 1
3. i = 0 j = 3
4. i = 1 j = 3
> 选1  2

#### 24
Consider the following code:
```
int i, j=0;
outer:
for( i=0;i<2;i++)
{
    for (j=i; j<3; j++)
    {
        continue outer;
    }
  System.out.println("i = "+i+" j = "+j);
}
```
Which lines would be part of the output?
1. i = 0 j = 0
2. i = 1 j = 1
3. i = 0 j = 3
4. None of the above
> 选4, 什么都输出, 这里是 java label标号的用法

#### 25
Consider the following code:
```
int i, j=0;
for( i=0;i<2;i++)
{
    inner:
    for(j=i; j<3; j++)
    {
        break inner;
    }
    System.out.println("i = "+i+" j = "+j);
}
```
Which **lines** would be part of the output?
1. i = 0 j = 0
2. i = 1 j = 1
3. i = 0 j = 3
4. None of the above
> 选 1 2,
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,417评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,921评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,850评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,945评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,069评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,188评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,239评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,994评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,409评论 1 304
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,735评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,898评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,578评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,205评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,916评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,156评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,722评论 2 363
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,781评论 2 351

推荐阅读更多精彩内容