首 页文章中心下载中心繁體中文
设为首页
加入收藏
联系我们
您当前的位置:开源盛世-源代码下载网 -> 文章中心 -> 其他编程 -> Java技术 -> 文章内容 退出登录 用户管理
栏目导航
· VC# 技术 · Delphi技术
· Java技术 · 通用算法
· 编程相关
热门文章
· Tab Control控件使用...
· 学生档案管理系统
· [图文] 排列组合公式
· UTF-8与GB2312之间的...
· DirectShow下载安装...
· Virtual PC 在PAE模...
· Windows2000终端服务...
· MapInfo上的GIS系统...
· kalman filter 卡尔...
· Windows2000终端服务...
相关文章
SUN样题测试及答案
作者:佚名  来源:vscodes.com整理  发布时间:2005-12-16 12:55:28  发布人:Polaris

减小字体 增大字体


NEW SUN CERTIFIED PROGRAMMER FOR THE JAVA 2 PLATFORM SAMPLE QUESTIONS
1. Given:
  1. public class ArrayTest {
  2.   public static void main (String[] args) {
  3.     Object[] ov;
  4.     String[] sa = { "Green", "Blue", "Red" };
  5.     ov = sa;
  6.     System.out.println("Color = " + ov[1]);
  7.   }
  8. }

What is the result?

  1. fails to compile
  2. prints Color=Blue
  3. prints Color=Green
  4. generates an exception at runtime

2. Given:
  1. public class OuterClass {
  2.   private double d1 = 1.0;
  3.     //insert code here
  4. }

You need to insert an inner class declaration at line 3. Which two inner class declarations are valid?(Choose two.)

  1. class InnerOne{
      public static double methoda() {return d1;}
    }
  2. public class InnerOne{
      static double methoda() {return d1;}
    }
  3. private class InnerOne{
      double methoda() {return d1;}
    }
  4. static class InnerOne{
      protected double methoda() {return d1;}
    }
  5. abstract class InnerOne{
      public abstract double methoda();
    }

3. Given:
  1. public class X {
  2.   public void m(Object x) {
  3.     x = new Integer(99);
  4.     Integer y = (Integer)x;
  5.     y = null;
  6.     System.out.println("x is" + x);
  7.   }
  8. }

When is the Integer object, created in line 3, eligible for garbage collection?

  1. never
  2. just after line 4
  3. just after line 5
  4. just after line 6 (that is, as the method returns)
  5. when the calling method sets the argument it passed into this method to null

4. Which is a valid identifier?
  1. false
  2. default
  3. _object
  4. a-class

5. Which two are equivalent? (Choose two.)
  1. 12>4
  2. 12/4
  3. 12*4
  4. 12>>2
  5. 12/2^2
  6. 12>>>1

6. Which two demonstrate a "has a" relationship? (Choose two.)
  1. public interface Person{ }
    public class Employee extends Person{ }
  2. public interface Shape{ }
    public interface Rectangle extends Shape{ }
  3. public interface Colorable{ }
    public class Shape implements Colorable{ }
  4. public class Species{ }
    public class Animal{private Species species;}
  5. interface Component{ }
    class Container implements Component{
       private Component[] children;
    }

7. Given

double pi = Math.PI;
Which two are valid ways to round pi to an int?(Choose two.)

  1. int p = pi;
  2. int p = Math.round(pi);
  3. int p = (int)Math.round(pi);
  4. int p = (int)Math.min(pi + 0.5d);
  5. int p = (int)Math.floor(pi + 0.5d);

8. Which two statements are true for the class java.util.TreeSet? (Choose two.)
  1. The elements in the collection are ordered.
  2. The collection is guaranteed to be immutable.
  3. The elements in the collection are guaranteed to be unique.
  4. The elements in the collection are accessed using a unique key.
  5. The elements in the collection are guaranteed to be synchronized

Return to the top


SUN CERTIFIED PROGRAMMER FOR THE JAVA PLATFORM, JDK 1.1

Note: The certification exam for the jdk 1.1 will be retired January 31, 2001. If you plan to pursue this certification you will need to register by this date. As of February 1, 2001, Sun will only offer certification exams for the Java 2 Platform.

The following samples will help you understand the types of questions you can expect to see when taking the Certified Programmer for the Java Platform, JDK 1.1 examination: Prometric exam number 310-022 (number 310-023 for IBM candidates).
1. Which code fragments would correctly identify the number of arguments passed via the command line to a Java application, excluding the name of the class that is being invoked?
  1. int count = args.length;
  2. int count = args.length - 1;
  3. int count = 0; while (args[count] != null) count ++;
  4. int count=0; while (!(args[count].equals(""))) count ++;

2. Which are keywords in Java (select all that apply)?
  1. sizeof
  2. abstract
  3. native
  4. NULL
  5. BOOLEAN

3. Which are correct class declarations? Assume in each case that the text constitutes the entire contents of a file called Fred.java on a system with a case-significant file system. Select all that apply.
  1. public class Fred {
            public int x = 0;
            public Fred (int x) {
              this.x = x;
              }
            } 
  2. public class fred 
             public int x = 0;
             public fred (int x) {
               this.x = x;
              }
             }
  3. public class Fred extends MyBaseClass, MyOtherBaseClass {
             public int x = 0;
             public Fred (int xval) {
             x = xval;
            }
           }
  4. protected class Fred {
             private int x = 0;
             private Fred (int xval) {
               x = xval;
              }
             }
  5. import java.awt.*;
             public class Fred extends Object {
               int x;
               private Fred (int xval) {
                 x = xval;
                }
              }

4. A class design requires that a particular member variable must beaccessible for direct access by any subclasses of this class, but otherwise not by classes which are not members of the same package. What should be done to achieve this?
  1. The variable should be marked public
  2. The variable should be marked private
  3. The variable should be marked protected
  4. The variable should have no special access modifier
  5. The variable should be marked private and an accessor method provided

5. Which correctly creates an array of five empty Strings (select all that apply)?
  1. String a [ ] = new String [5]; for (int i = 0; i < 5; a[i++] = "");
  2. String a [ ] = {"", "", "", "", ""};
  3. String a [5];
  4. String [ ] a = new String [5]; for (int i = 0; i < 5; a[i++] = null);
  5. String [5] a;

6. Which cannot be added to a Container?
  1. an Applet
  2. a Component
  3. a Container
  4. a Menu
  5. a Panel
SUN CERTIFIED PROGRAMMER FOR THE JAVA 2 PLATFORM
Sun Educational Services provides sample questions as a means for cand idates to understand the types of questions that you can expect when taking the Sun Certified Programmer for the Java™ 2 Platform exa mination: Prometric exam number 310-025.

1. Given:
  1. public class ArrayTest {
  2.   public static void main (String[] args) {
  3.     Object[] ov;
  4.     String[] sa = { "Green", "Blue", "Red" };
  5.     ov = sa;
  6.     System.out.println("Color = " + ov[1]);
  7.   }
  8. }

What is the result?

  1. fails to compile
  2. prints Color=Blue
  3. prints Color=Green
  4. generates an exception at runtime

2. Given:
  1. public class OuterClass {
  2.   private double d1 = 1.0;
  3.     //insert code here
  4. }

You need to insert an inner class declaration at line 3. Which two inner class declarations are valid?(Choose two.)

  1. class InnerOne{
      public static double methoda() {return d1;}
    }
  2. public class InnerOne{
      static double methoda() {return d1;}
    }
  3. private class InnerOne{
      double methoda() {return d1;}
    }
  4. static class InnerOne{
      protected double methoda() {return d1;}
    }
  5. abstract class InnerOne{
      public abstract double methoda();
    }

3. Given:
  1. public class X {
  2.   public void m(Object x) {
  3.     x = new Integer(99);
  4.     Integer y = (Integer)x;
  5.     y = null;
  6.     System.out.println("x is" + x);
  7.   }
  8. }

When is the Integer object, created in line 3, eligible for garbage collection?

  1. never
  2. just after line 4
  3. just after line 5
  4. just after line 6 (that is, as the method returns)
  5. when the calling method sets the argument it passed into this method to null

4. Which is a valid identifier?
  1. false
  2. default
  3. _object
  4. a-class

5. Which two are equivalent? (Choose two.)
  1. 12>4
  2. 12/4
  3. 12*4
  4. 12>>2
  5. 12/2^2
  6. 12>>>1

6. Which two demonstrate a "has a" relationship? (Choose two.)
  1. public interface Person{ }
    public class Employee extends Person{ }
  2. public interface Shape{ }
    public interface Rectangle extends Shape{ }
  3. public interface Colorable{ }
    public class Shape implements Colorable{ }
  4. public class Species{ }
    public class Animal{private Species species;}
  5. interface Component{ }
    class Container implements Component{
      private Component[] children;
    }

7. Given

double pi = Math.PI;
Which two are valid ways to round pi to an int?(Choose two.)

  1. int p = pi;
  2. int p = Math.round(pi);
  3. int p = (int)Math.round(pi);
  4. int p = (int)Math.min(pi + 0.5d);
  5. int p = (int)Math.floor(pi + 0.5d);

8. Which two statements are true for the class java.util.TreeSet? (Choo se two.)
  1. The elements in the collection are ordered.
  2. The collection is guaranteed to be immutable.
  3. The elements in the collection are guaranteed to be unique.
  4. The elements in the collection are accessed using a unique key.
  5. The elements in the collection are guaranteed to be synchronized

Return to the top


SUN CERTIFIED PROGRAMMER FOR THE JAVA PLATFORM, JDK 1.1
Note: The certification exam for the jdk 1.1 will be retired January 31, 2001. If you plan to pursue this certification you will need to register by this date. As of February 1, 2001, Sun will only offer certification exams for the Java 2 Platform.
The following samples will help you understand the types of questions you can expect to see when taking the Certified Programmer for the Java Platform, JDK 1.1 examination: Prometric exam number 310-022 (number 310-023 for IBM candidates).
1. Which code fragments would correctly identify the number of arguments passed via the command line to a Java application, excluding the name of the class that is being invoked?
  1. int count = args.length;
  2. int count = args.length - 1;
  3. int count = 0; while (args[count] != null) count ++;
  4. int count=0; while (!(args[count].equals(""))) count ++;

2. Which are keywords in Solaris (select all that apply)?
  1. sizeof
  2. abstract
  3. native
  4. NULL
  5. BOOLEAN

3. Which are correct class declarations? Assume in each case that the text constitutes the entire contents of a file called Fred.java on a system with a case-significant file system. Select all that apply.
  1. public class Fred {
            public int x = 0;
            public Fred (int x) {
              this.x = x;
              }
            } 
  2. public class fred 
             public int x = 0;
             public fred (int x) {
               this.x = x;
              }
             }
  3. public class Fred extends MyBaseClass, MyOtherBaseClass {
             public int x = 0;
             public Fred (int xval) {
             x = xval;
            }
           }
  4. protected class Fred {
             private int x = 0;
             private Fred (int xval) {
               x = xval;
              }
             }
  5. import java.awt.*;
             public class Fred extends Object {
               int x;
               private Fred (int xval) {
                 x = xval;
                }
              }

4. A class design requires that a particular member variable must beaccessible for direct access by any subclasses of this class, but otherwise not by classes which are not members of the same package. What should be done to achieve this?
  1. The variable should be marked public
  2. The variable should be marked private
  3. The variable should be marked protected
  4. The variable should have no special access modifier
  5. The variable should be marked private and an accessor method provided

5. Which correctly creates an array of five empty Strings (select all that apply)?
  1. String a [ ] = new String [5]; for (int i = 0; i < 5; a[i++] = "");
  2. String a [ ] = {"", "", "", "", ""};
  3. String a [5];
  4. String [ ] a = new String [5]; for (int i = 0; i < 5; a[i++] = null);
  5. String [5] a;

6. Which cannot be added to a Container?
  1. an Applet
  2. a Component
  3. a Container
  4. a Menu
  5. a Panel

End of《SUN样题测试及答案》

[] [返回上一页] [打 印] [收 藏]
上一篇文章:全面研读 EJB 2.0
 
∷相关“SUN样题测试及答案”文章评论∷
(评论内容只代表网友观点,与本站立场无关!) [更多评论...]
关于本站 - 网站帮助 - 广告合作 - 下载声明 - 友情连接 - 网站地图 网站目录 鄂ICP备06007162
开源盛世 版权所有Copyright © 2003-2005 VSCodes.Com. All Rights Reserved.