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

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

1.

public class ReturnIt{ returnType methodA(byte x, double y){   //line 2return (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,如需转载请自行联系原作者

Java 经典笔试题相关推荐

  1. java经典笔试题大全(50道含答案)

    java经典笔试题大全(50道含答案)整理了一套常用的Java笔试题,选择题50道,简答题5道,试试你能做对多少题吧,含答案. 选择题(共50题,每题1.5分,共75分.多选题选不全或选错都不得分.) ...

  2. java面试题_阿里大厂流出的数百道 Java 经典面试题

    BAT 常问的 Java基础39道常见面试题 1.八种基本数据类型的大小,以及他们的封装类 2.引用数据类型 3.Switch能否用string做参数 4.equals与==的区别 5.自动装箱,常量 ...

  3. Java经典面试题 带答案(五)

    Java经典面试题 带答案(五) Java 面试笔试题汇总 一.编程语言(Java)-2 二.软件工程方面-9 三.智力测试-9 四.数据库-12 五.Java框架方面 -14 六.XML方面-17 ...

  4. java面试笔试题大汇总

    java面试笔试题大汇总 JAVA相关基础知识 1.面向对象的特征有哪些方面 1.抽象: 抽象就是忽略一个主题中与当前目标无关的那些方面,以便更充分地注意与当前目标有关的方面.抽象并不打算了解全部问题 ...

  5. Java面试笔试题大汇总一(最全+详细答案)

    Java面试笔试题大汇总二(最全+详细答案)https://www.jianshu.com/p/f5120f1b75be Java面试笔试题大汇总三(最全+详细答案)https://www.jians ...

  6. Java面试笔试题大汇总三(最全+详细答案)

    Java面试笔试题大汇总一(最全+详细答案):https://www.jianshu.com/p/73b6b3d35676 Java面试笔试题大汇总二(最全+详细答案)https://www.jian ...

  7. java工程师考试题目_成功拿到Offer,Java工程师笔试题及答案!

    1.是否可以从一个static方法内部发出对非static方法的调用? 不可以.因为非static方法是要与对象关联在一起的,必须创建一个对象后,才可以在该对象上进行方法调用,而static方法调用时 ...

  8. Java经典面试题整理及答案详解(八)

    简介: Java经典面试题第八节来啦!本节面试题包含了进程.线程.Object类.虚拟内存等相关内容,希望大家多多练习,早日拿下心仪offer- 了解更多: Java经典面试题整理及答案详解(一) J ...

  9. Java经典面试题整理及答案详解(五)

    Java经典面试题第五弹来啦!本节面试题主要是针对Java初级基础提问,看看你还记得多少? 1.String str="hello",这个字符串对象在栈内存中明明有一个引用(str ...

最新文章

  1. 生命真的源于宇宙吗?多名宇航员身体,都曾发生“不可逆”的变化
  2. 查看动态链接库依赖关系的命令
  3. java内存分配和回收策略
  4. k8s mysql 弹性_kubernetes云平台管理实战:k8s弹性伸缩(十八)
  5. 真正的蓝海是适合你的领域
  6. matlab有限体积网格,用Matlab实现简单有限体积求解器
  7. 软件流程和管理(四):PMP Stakeholder Management
  8. 批量自动付款(京东)
  9. MacbookAir2011用U盘重装10.13.6High Sierra系统
  10. 不想被淘汰,大咖有话说——程序猿一定要学大数据?
  11. 一文梳理2021年常见消息中间件MQ与RabbitMQ面试题
  12. 七牛云存对象存储及域名设置
  13. C语言程序设计第四次作业——选择结构(2)
  14. quartz所需表的说明
  15. 小程序突然报module is not defined_蔬菜“英文”小故事(九)
  16. C++ 成员函数连续调用
  17. 聊聊荣耀30S 5G手机到底值不值得买?
  18. 思科交换机配置命令大全!
  19. 教育孩儿子要懂的心理学
  20. Vue3+node.js网易云音乐实战项目(三)

热门文章

  1. 电脑画画软件_绘画软件分享,还不过来看!
  2. 红黑树与平衡二叉树_图解“红黑树”原理,一看就明白!
  3. mysql 空间查询_MYSQL空间查询函数
  4. python表单防重复提交_传统方式提交表单,防止重复提交问题?
  5. java 多列 统计_java – 如何计算多列(colspan)HTML表的宽度?
  6. linux安装chrome_chrome 的安装及出现密钥问题(ubuntu16.04)
  7. java执行查询postgresql得到中文乱码_PostgreSQL 初探
  8. python123第六周作业,马哥2016全新Linux+Python高端运维班第六周作业
  9. word2vec原理_初识word2vec词向量
  10. R语言学习系列(数据挖掘之决策树算法实现--ID3代码篇)