Java 经典笔试题

简介:

    这些题目对我的笔试帮助很大,有需要的朋友都可以来看看,在笔试中能遇到的题目基本上下面都会出现,虽然形式不同,当考察的基本的知识点还是相同的。

        在分析中肯定有不足和谬误的地方还请大虾们能够给予及时的纠正,特此感谢

1.

复制代码
public class ReturnIt{ 
      returnType methodA(byte x, double y){   //line 2
            return (short)x/y*2; 
      } 
}

what is valid returnType for methodA in line 2?
复制代码

答案:返回double类型,因为(short)x将byte类型强制转换为short类型,与double类型运算,将会提升为double类型.

2. 

复制代码
 1)  class Super{ 
 2)          public float getNum(){return 3.0f;} 
 3)  } 
 4) 
 5)  public class Sub extends Super{ 
 6) 
 7)  } 
复制代码

which method, placed at line 6, will cause a compiler error? 
A. public float getNum(){return 4.0f;} 
B. public void getNum(){} 
C. public void getNum(double d){} 
D. public double getNum(float d){return 4.0d;} 
Answer:B

A属于方法的重写(重写只存在于继承关系中),因为修饰符和参数列表都一样.B出现编译错误,如下:

Sub.java:6: Sub 中的 getNum() 无法覆盖 Super 中的 getNum();正在尝试使用不
兼容的返回类型
找到: void
需要: float
   public void getNum(){}
               ^
1 错误

B既不是重写也不是重载,重写需要一样的返回值类型参数列表,访问修饰符的限制一定要大于被重写方法的访问修饰符(public>protected>default>private);

重载:必须具有不同的参数列表;
可以有不同的返回类型,只要参数列表不同就可以了;
可以有不同的访问修饰符;

把其看做是重载,那么在java中是不能以返回值来区分重载方法的,所以b不对.

3.

复制代码
public class IfTest{ 
    public static void main(String args[]){ 
        int x=3; 
        int y=1; 
        if(x=y) 
            System.out.println("Not equal"); 
        else 
            System.out.println("Equal"); 
    } 
} 
复制代码

what is the result? 
Answer:compile error 错误在与if(x=y) 中,应该是x==y;  =是赋值符号,==是比较操作符

4. 

复制代码
public class Foo{ 
  public static void main(String args[]){ 
  try{return;} 
   finally{ System.out.println("Finally");} 
   } 
    } 
复制代码

 what is the result? 
 A. print out nothing 
 B. print out "Finally" 
 C. compile error 
Answer:B   java的finally块会在return之前执行,无论是否抛出异常且一定执行.

5.

复制代码
public class Test{ 
   public static String output=""; 
   public static void foo(int i){ 
     try { 
       if(i==1){ 
         throw new Exception(); 
       } 
       output +="1"; 
     } 
     catch(Exception e){ 
       output+="2"; 
       return; 
     } 
     finally{ 
       output+="3"; 
     } 
     output+="4"; 
   } 
   public static void main(String args[]){ 
     foo(0); 
     foo(1); 
     24)   
   } 
}
复制代码

 

what is the value of output at line 24? Answer:13423 如果你想出的答案是134234,那么说明对return的理解有了混淆,return是强制函数返回,本题就是针对foo(),那么当执行到return的话,output+="4"; 就不再执行拉,这个函数就算结束拉.

6. 

复制代码
public class IfElse{ 
        public static void main(String args[]){ 
            if(odd(5)) 
                System.out.println("odd"); 
            else 
                System.out.println("even"); 
         } 
         public static int odd(int x){return x%2;}   
     } 
复制代码

     what is output? 
     Answer:Compile Error

7. 

复制代码
class ExceptionTest{ 
           public static void main(String args[]){ 
                 try{ 
                       methodA(); 
                 } 
                 catch(IOException e){ 
                       System.out.println("caught IOException"); 
                 } 
                 catch(Exception e){ 
                        System.out.println("caught Exception"); 
                 } 
            } 
      } 
复制代码

If methodA() throws a IOException, what is the result? (其实还应该加上:import java.io.*;)
Answer:caught IOException 异常的匹配问题,如果2个catch语句换个位置,那就会报错,catch只能是越来越大,意思就是说:catch的从上到下的顺序应该是:孙子异常->孩子异常->父亲异常->老祖先异常.这么个顺序.

8. 

int i=1,j=10; 
    do{ 
           if(i++>--j) continue; 
     }while(i<5); (注意不要丢了这个分号呦)

After Execution, what are the value for i and j?

A. i=6 j=5 
B. i=5 j=5 
C. i=6 j=4 
D. i=5 j=6 
E. i=6 j=6 
Answer:D

9. 

复制代码
    1)public class X{ 
    2)       public Object m(){ 
    3)             Object o=new Float(3.14F); 
    4)             Object[] oa=new Object[1]; 
    5)             oa[0]=o; 
    6)             o=null; 
    7)             oa[0]=null; 
    8)             System.out.println(oa[0]); 
    9)        } 
  10) } 
复制代码

 which line is the earliest point the object a refered is definitely elibile 
 to be garbage collectioned? 
 A.After line 4   B. After line 5  C.After line 6   
 D.After line 7   E.After line 9(that is,as the method returns) 
 Answer:D

如果 6) o=null 变成 o=9f  ,并且把7)去掉,那么8)将会输出什么呢?

10.  

复制代码
        1)  interface Foo{ 
        2)      int k=0; 
        3)  } 
        4)  public class Test implements Foo{ 
        5)       public static void main(String args[]){ 
        6)             int i; 
        7)             Test test  = new Test(); 
        8)             i = test.k; 
        9)             i = Test.k; 
       10)             i = Foo.k; 
       11)     } 
       12) } 
复制代码

   what is the result? Answer:compile successed and i=0 接口中的int k=0虽然没有访问修饰符,但在接口中默认是static和final的

11. what is reserved words in java? 
      A. run 
      B. default 
      C. implement 
      D. import 
      Answer:B,D

12.

复制代码
public class Test{ 
           public static void main(String[] args){ 
                 String foo=args[1]; 
                 Sring bar=args[2]; 
                 String baz=args[3]; 
           } 
       } 
复制代码

 java Test Red Green Blue 
  what is the value of baz? 
  A. baz has value of ""
  B. baz has value of null 
  C. baz has value of Red 
  D. baz has value of Blue 
  E. baz has value of Green 
  F. the code does not compile 
  G. the program throw an exception 
  Answer:G

分析:感觉原应该多一些语句吧,至少应该有红绿蓝的赋值语句之类的,才能叫java Test Red Green Blue 才能有后面的选项,所以现在感觉很奇怪,不过就这个样子吧.这个问题在于:数组参数的理解,编译程序没有问题,但是运行这个程序就会出现问题,因为参数args没有给他分配空间那么他的长度应该是0,下面却用拉args[1]........等等的语句,那么定会出现越界错误.

错误如下:Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 1
at Test.main(Test.java:4)


13.  

       int index=1; 
       int foo[]=new int[3]; 
       int bar=foo[index]; 
       int baz=bar+index; 

  what is the result? 
  A. baz has a value of 0 
  B. baz has value of 1 
  C. baz has value of 2 
  D. an exception is thrown 
  E. the code will not compile 
  Answer:B 

分析:《thinking in java》中的原话:若类的某个成员是基本数据类型,即使没有进行初始化,java也会确保它获得一个默认值,如下表所示:

 

基本类型 默认值
boolean false
char '/u0000'(null)
byte (byte)0
short (short)0
int 0
long 0L
float 0.0f
double 0.0d

 

千万要小心:当变量作为类的成员使用时,java才确保给定其默认值,。。。。。(后面还有很多话,也很重要,大家一定要看完成,要不然还是不清楚)

14. which three are valid declaraction of a float? 
   A. float foo=-1; 
   B. float foo=1.0; 
   C. float foo=42e1; 
   D. float foo=2.02f; 
   E. float foo=3.03d; 
   F. float foo=0x0123; 
Answer:A,D,F 分析:B错误,因为1.0在java中是double类型的,C,E错误同样道理,都是double类型的

15. 

复制代码
public class Foo{ 
             public static void main(String args[]){ 
                       String s; 
                       System.out.println("s="+s); 
             } 
       } 
复制代码

what is the result? 
Answer:compile error 分析:需要对s进行初始化,和13题是不是矛盾呢:不矛盾,因为它不是基本类型,也不是类的成员,所以不能套用上述的确保初始化的方法。

16.    

复制代码
         1) public class Test{ 
         2)       public static void main(String args[]){ 
         3)           int i =0xFFFFFFF1; 
         4)           int j=~i; 
         5) 
         6)       } 
         7) } 
复制代码

which is decimal value of j at line 5? 
A. 0      B.1    C.14    D.-15    E. compile error at line 3  F. compile error at line 4 
Answer:C  分析:int是32位的(范围应该在-231~231-1),按位取反后,后4位是1110,前面的全部是0,所以肯定是14

17. 

      float f=4.2F; 
      Float g=new Float(4.2F); 
      Double d=new Double(4.2); 

Which are true? 
A. f==g   B. g==g   C. d==f   D. d.equals(f)  E d.equals(g)  F. g.equals(4.2); 
Answer:B,E(网上的答案是B,E;我测试的结果是:true,true,false,false,fasle,fasle,所以答案是:A,B,还请各位大虾明示)

分析:以下是我从网络上找到的,但是感觉应用到这个题目上反而不对拉,郁闷中,希望能给大家有所提示,要是你们明白拉,记得给我留言啊!:~

1.基本类型、对象引用都在栈中; 而对象本身在堆中;

2.“==“比的是两个变量在栈内存中的值,而即使变量引用的是两个对象,“==”比的依旧是变量所拥有的“栈内存地址值”;

3.equals()是每个对象与生俱来的方法,因为所有类的最终基类就是Object(除去Object本身);而equals()是Object的方法之一,也就是说equals()方法来自Object类。 观察一下Object中equals()的source code:

public boolean equals(Object obj) { return (this == obj); }

注意:“return (this == obj)” this与obj都是对象引用,而不是对象本身。所以equals()的缺省实现就是比较“对象引用”是否一致,所以要比较两个对象本身是否一致,须自己编写代码覆盖Object类里的equals()的方法。来看一下String类的equals方法代码:

复制代码
public boolean equals(Object anObject){ 
 if(this == anObject){ 
  return true;
 } 
 if(anObject instanceof String){ 
  String anotherString = (String)anObject;
  int n = count;
  if(n == anotherString.count){
   char v1[] = value;
   char v2[] = anotherString.value;
   int i = offset;
   int j = anotherString.offset;
   while(n-- != 0){ 
    if(v1[i++] != v2[j++]) 
     return false;
   } 
   return true;
  } 
 }
 return false;
}
复制代码

 

18.  

复制代码
public class Equals{ 
            public static void add3(Integer i){ 
                int val = i.intValue(); 
                val += 3; 
                i = new Integer(val); 
             } 
             public static void main(String args[]){ 
                 Integer i=new Integer(0); 
                 add3(i); 
                 System.out.println(i.intValue()); 
             } 
         }
复制代码

what is the result?

A. compile fail       B.print out "0"      C.print out "3"   
D.compile succeded but exception at line 3 
Answer:B   分析:java只有一种参数传递方式,那就是值传递.(大家可以看我转载的另一个同名文章,会让大家豁然开朗)

19. 

public class Test{ 
         public static void main(String[] args){ 
            System.out.println(6^3); 
      } 
    } 

  what is output? Answer:5 分析: ^ is yi huo(计算机器上是Xor) ;异或的逻辑定义:真^真=假 真^假=真 假^真=真 假^假=假

20. 

复制代码
public class Test{ 
          public static void stringReplace(String text){ 
              text=text.replace('j','l'); 
          } 
          public static void bufferReplace(StringBuffer text){ 
              text=text.append("c"); 
       } 
          public static void main(String args[]){  
              String textString=new String("java"); 
              StringBuffer textBuffer=new StringBuffer("java"); 
              stringReplace(textString); 
              bufferReplace(textBuffer); 
                 System.out.println(textString+textBuffer); 
         } 
    } 
复制代码

what is the output? 
Answer:javajavac

分析:根据我转载的一篇文章<Java只有一种参数传递方式,那就是传值>可以得出答案,不过还有几个类似的题目,用该文章解释不通,因为本人对java传递参数也一直没有弄明白,所以,还请大虾多多指教.

21.

 public class ConstOver{ 
     public ConstOver(int x, int y, int z){} 
   } 

  which two overload the ConstOver constructor? 
A.ConstOver(){} 
B.protected int ConstOver(){}  //not overload ,but no a error 
C.private ConstOver(int z, int y, byte x){} 
D.public void ConstOver(byte x, byte y, byte z){} 
E.public Object ConstOver(int x, int y, int z){} 
Answer:A,C

分析:测试不通过的首先是B,E,因为要求有返回值,这2个选项没有,要想通过编译那么需要加上返回值,请注意如果加上返回值,单纯看选项是没有问题拉,可以针对题目来说,那就是错之又错拉,对于构造器来说是一种特殊类型的方法,因为它没有返回值.对于D选项在<java编程思想 第3版>91页有详细的介绍,空返回值,经管方法本身不会自动返回什么,但可以选择返回别的东西的,而构造器是不会返回任何东西的,否则就不叫构造器拉.

22. 

public class MethodOver{ 
           public void setVar(int a, int b, float c){} 
   } 

  which overload the setVar? 
A.private void setVar(int a, float c, int b){} 
B.protected void setVar(int a, int b, float c){} 
C.public int setVar(int a, float c, int b){return a;} 
D.public int setVar(int a, float c){return a;} 
Answer:A,C,D 分析:方法的重载,根据概念选择,B是错误的,因为他们有相同的参数列表,所以不属于重载范围.

23.

复制代码
 class EnclosingOne{ 
             public class InsideOne{} 
    } 
       public class InnerTest{ 
          public static void main(String args[]){ 
          EnclosingOne eo=new EnclosingOne(); 
          //insert code here 
          } 
        } 
复制代码

        A.InsideOne ei=eo.new InsideOne(); 
        B.eo.InsideOne ei=eo.new InsideOne(); 
        C.InsideOne ei=EnclosingOne.new InsideOne(); 
        D.InsideOne ei=eo.new InsideOne(); 
        E.EnclosingOne.InsideOne ei=eo.new InsideOne(); 
Answer:E

24. What is "is a" relation? 
  A.public interface Color{} 
  public class Shape{private Color color;} 
  B.interface Component{} 
  class Container implements Component{ private Component[] children; } 
  C.public class Species{} 
public class Animal{private Species species;}  
  D.interface A{} 
      interface B{} 
      interface C implements A,B{}  //syntex error 
Answer:B 我没有明白这个题目的意思,有人能告诉我嘛?

25. 

复制代码
      1)package foo; 
      2) 
      3)public class Outer{ 
      4)    public static class Inner{ 
      5)    } 
      6)} 
复制代码

  which is true to instantiated Inner class inside Outer? 
  A. new Outer.Inner() 
  B. new Inner() 
Answer:B 
if out of outerclass A is correct  分析:在Outer内部,B方式实例化内部类的方法是正确的,如果在Outer外部进行inner的实例化,那么A方法是正确的.

26. 

复制代码
class BaseClass{ 
         private float x=1.0f; 
         private float getVar(){return x;} 
    } 
      class SubClass extends BaseClass{ 
         private float x=2.0f; 
         //insert code 
  } 
复制代码

  what are true to override getVar()? 
  A.float getVar(){
  B.public float getVar(){
  C.public double getVar(){
  D.protected float getVar(){
  E.public float getVar(float f){
Answer:A,B,D 分析:返回类型和参数列表必须完全一致,且访问修饰符必须大于被重写方法的访问修饰符.

27. 

复制代码
public class SychTest{ 
          private int x; 
          private int y; 
          public void setX(int i){ x=i;} 
          public void setY(int i){y=i;} 
          public Synchronized void setXY(int i){ 
               setX(i); 
               setY(i); 
          } 
          public Synchronized boolean check(){ 
               return x!=y;   
          } 
      } 
复制代码

Under which conditions will  check() return true when called from a different class? 
A.check() can never return true. 
B.check() can return true when setXY is callled by multiple threads. 
C.check() can return true when multiple threads call setX and setY separately. 
D.check() can only return true if SychTest is changed allow x and y to be set separately. 
Answer:C

分析:答案是C,但是我想不出来一个测试程序来验证C答案.希望高手们给我一个测试的例子吧,万分感谢..........

28. 

复制代码
       1) public class X implements Runnable{ 
       2)              private int x; 
       3)              private int y; 
       4)              public static void main(String[] args){ 
       5)                               X that =new X(); 
       6)                              (new Thread(that)).start(); 
       7)                              (new Thread(that)).start(); 
                         } 
       9)              public synchronized void run(){ 
     10)                              for(;;){ 
     11)                                          x++; 
     12)                                          y++; 
     13)                                          System.out.println("x="+x+",y="+y); 
     14)                               } 
     15)                 } 
     16) }   
复制代码

      what is the result? 
      A.compile error at line 6 
      B.the program prints pairs of values for x and y that are always the same on the same time 
      Answer:B 分析:我感觉会出现不相等的情况,但是我说不出为什么会相等。线程方面,还有好多路要走啊,咳

29. 

复制代码
class A implements Runnable{ 
              int i; 
              public void run(){ 
                  try{ 
                        Thread.sleep(5000); 
                         i=10; 
                  }catch(InterruptedException e){} 
              } 
              public static void main(String[] args){ 
                  try{ 
                       A a=new A(); 
                      Thread t=new Thread(a); 
                       t.start(); 
                       17)
                        int j=a.i; 
                        19) 
              }catch(Exception e){} 
        } 
    } 
复制代码

what be added at line line 17, ensure j=10 at line 19? 
A. a.wait();   B.  t.wait();   C. t.join();   D.t.yield();    E.t.notify();    F. a.notify();     G.t.interrupt(); 
Answer:C

30. Given an ActionEvent, how to indentify the affected component? 
    A.getTarget(); 
    B.getClass(); 
    C.getSource();   //public object 
    D.getActionCommand(); 
Answer:C

31.

复制代码
 import java.awt.*; 
public class X extends Frame{ 
    public static void main(String[] args){ 
      X x=new X(); 
      x.pack(); 
      x.setVisible(true);
    } 
    public X(){ 
      setLayout(new GridLayout(2,2)); 
      
      Panel p1=new Panel(); 
      add(p1); 
      Button b1=new Button("One"); 
      p1.add(b1); 
      
      Panel p2=new Panel(); 
      add(p2); 
      Button b2=new Button("Two"); 
      p2.add(b2); 
       
      Button b3=new Button("Three"); 
      p2.add(b3); 
      
      Button b4=new Button("Four"); 
      add(b4); 
   } 
}
复制代码

 when the frame is resized, 
 A.all change height    B.all change width   C.Button "One" change height 
 D.Button "Two" change height  E.Button "Three" change width 
 F.Button "Four" change height and width 
Answer:F

32. 

复制代码
  1) public class X{ 
  2)    public static void main(String[] args){ 
  3)     String foo="ABCDE"; 
  4)     foo.substring(3); 
  5)     foo.concat("XYZ"); 
  6)    } 
  7)   } 
复制代码

  what is the value of foo at line 6? 
Answer:ABCDE

33. How to calculate cosine 42 degree? 
  A.double d=Math.cos(42); 
  B.double d=Math.cosine(42); 
  C.double d=Math.cos(Math.toRadians(42)); 
  D.double d=Math.cos(Math.toDegrees(42)); 
  E.double d=Math.toRadious(42); 
Answer:C

34. 

复制代码
public class Test{ 
   public static void main(String[] args){ 
   StringBuffer a=new StringBuffer("A"); 
   StringBuffer b=new StringBuffer("B"); 
   operate(a,b); 
   System.out.pintln(a+","+b); 
    } 
   public static void operate(StringBuffer x, StringBuffer y){ 
    x.append(y); 
    y=x; 
   } 
   } 
复制代码

   what is the output? 
Answer:AB,B 分析:这道题的答案是AB,B,网上有很多答案给错啦,大家注意啊。

35.  

复制代码
1) public class Test{ 
       2)     public static void main(String[] args){ 
       3)       class Foo{ 
       4)            public int i=3; 
       5)        } 
       6)        Object o=(Object)new Foo(); 
       7)        Foo foo=(Foo)o; 
                   System.out.println(foo.i); 
       9)     } 
     10) } 
复制代码

  what is result? 
  A.compile error at line 6 
  B.compile error at line 7 
  C.print out 3 
Answer:C

 

36.

复制代码
 public class FooBar{ 
   public static void main(String[] args){ 
    int i=0,j=5; 
  4) tp:  for(;;i++){ 
         for(;;--j) 
        if(i>j)break tp; 
       } 
   System.out.println("i="+i+",j="+j); 
   } 
   } 
复制代码

  what is the result? 
  A.i=1,j=-1    B. i=0,j=-1  C.i=1,j=4    D.i=0,j=4   
  E.compile error at line 4 
Answer:B

37. 

复制代码
public class Foo{ 
             public static void main(String[] args){ 
                         try{System.exit(0);} 
                         finally{System.out.println("Finally");} 
             } 
       } 
复制代码

   what is the result? 
   A.print out nothing 
   B.print out "Finally" 
 Answer:A 
 system.exit(0) has exit

38. which four types of objects can be thrown use "throws"? 
  A.Error 
  B.Event 
  C.Object 
  D.Excption 
  E.Throwable 
  F.RuntimeException 
Answer:A,D,E,F

分析:throw,例如:throw new IllegalAccessException("demo");是一个动作。
而throws则是异常块儿的声明。所以感觉题目应该是“throw”

39. 

复制代码
       1)public class Test{ 
       2)     public static void main(String[] args){ 
       3)         unsigned byte b=0; 
       4)         b--; 
       5) 
       6)     } 
       7) } 
复制代码

 what is the value of b at line 5? 
 A.-1   B.255  C.127  D.compile fail  E.compile succeeded but run error 
Answer:D

40. 

复制代码
public class ExceptionTest{ 
            class TestException extends Exception{} 
            public void runTest() throws TestException{} 
            public void test() /* point x */ { 
                    runTest(); 
            } 
       } 
复制代码

At point x, which code can be add on to make the code compile? 
A.throws Exception   B.catch (Exception e) 
Answer:A

41. 

String foo="blue"; 
       boolean[] bar=new boolean[1]; 
       if(bar[0]){ 
          foo="green"; 
       } 

what is the value of foo? 
A.""  B.null  C.blue   D.green 
Answer:C

42.

复制代码
public class X{ 
           public static void main(String args[]){ 
                 Object o1=new Object(); 
                 Object o2=o1; 
                 if(o1.equals(o2)){ 
                      System.out.prinln("Equal"); 
                  } 
            } 
       } 
复制代码

what is result? 
Answer:Equal


本文转自Orson博客园博客,原文链接:http://www.cnblogs.com/java-class/archive/2013/05/07/3065446.html,如需转载请自行联系原作者

相关文章
|
4月前
|
存储 安全 Java
冒死潜入某个外包公司获得的珍贵Java基础笔试题(附答案)
冒死潜入某个外包公司获得的珍贵Java基础笔试题(附答案)
53 0
|
9月前
|
SQL 存储 数据管理
Java经典笔试题—day13
Java经典笔试题—day13
|
9月前
|
机器学习/深度学习 SQL 关系型数据库
Java经典笔试题—day14
Java经典笔试题—day14
|
9月前
|
Java
Java经典笔试题—day12
Java经典笔试题—day12
|
9月前
|
算法 Java 数据库
Java经典笔试题—day11
Java经典笔试题—day11
|
9月前
|
存储 安全 Java
Java经典笔试题—day10
Java经典笔试题—day10
124 0
|
9月前
|
Java
Java经典笔试题—day09
Java经典笔试题—day09
|
9月前
|
存储 机器学习/深度学习 Java
Java经典笔试题—day08
Java经典笔试题—day08
|
9月前
|
存储 Java 数据安全/隐私保护
Java经典笔试题—day07
Java经典笔试题—day07
|
9月前
|
人工智能 Java BI
Java经典笔试题—day06
Java经典笔试题—day06

热门文章

最新文章