JAVA程序员笔试题目与答案

JAVA程序员笔试题目与答案

ID:27306812

大小:45.00 KB

页数:19页

时间:2018-12-02

JAVA程序员笔试题目与答案_第1页
JAVA程序员笔试题目与答案_第2页
JAVA程序员笔试题目与答案_第3页
JAVA程序员笔试题目与答案_第4页
JAVA程序员笔试题目与答案_第5页
资源描述:

《JAVA程序员笔试题目与答案》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、19JAVA程序员笔试题目与答案1.Given: Integer i = new Integer (42);Long l = new Long (42);Double d = new Double (42.0); Which two expressions evaluate to True?A. (i == 1)B. (i == d)C. (d == 1)D. (i.equals (l))E. (d.equals (l))F. (i.equals (42)) G. none of aboveAnswer:           2. Given: public class Foo {  

2、  public static void main (String [] args)  {        StringBuffer a = new StringBuffer("A");        StringBuffer b = new StringBuffer ("B");        operate (a,b);        System.out.println(a + "," +b);19    }    static void operate(StringBuffer x, StringBuffer y) {        x.append(y);        y =

3、 x;    }}What is the result? A. The code compiles and prints “A,B”.B. The code compiles and prints “A,A”.C. The code compiles and prints “B,B”.D. The code compiles and prints “AB,B”.E. The code compiles and prints “AB,AB”.F. The code does not compile because “+” cannot be overloaded for StringBu

4、ffer. Answer:          3.Given:class BaseClass {    private float x = 1.0f ;    protected float getVar() {return x;}}19class Subclass extends BaseClass {    private float x = 2.0f;    //insert here}Which two are valid examples of method overriding?A. float getVar() { return x;}B. public float ge

5、tVar() { return x;}C. public double getVar() { return x;}D. protected float getVar() { return x;}E. public float getVar(float f) { return f;}Answer:        4. Which of the following are methods of the Runnable interfaceA) runB) startC) yieldD) stopAnswer:             5. Which of the following ar

6、e legal statements?A) float f=1/3;B) int i=1/3;19C) float f=1.01;D) double d=999d;Answer:                 6. Given:public class test(    public static void main(string[] args){        String foo = args[1];        String baz = args[2];        String bax = args[3];    }} And the command line invoc

7、ation: Java Test red green blue What is the result? A. baz has the value of “”B. baz has the value of nullC. baz has the value of “red”D. baz has the value of “blue”E. bax has the value of “green”F. the code does not compile

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。