会员: 密码:  免费注册 | 忘记密码 | 会员登录 网页功能: 加入收藏 设为首页 网站搜索  
 安全技术技术文档
  · 安全配制
  · 工具介绍
  · 黑客教学
  · 防火墙
  · 漏洞分析
  · 破解专题
  · 黑客编程
  · 入侵检测
 安全技术论坛
  · 安全配制
  · 工具介绍
  · 防火墙
  · 黑客入侵
  · 漏洞检测
  · 破解方法
  · 杀毒专区
 安全技术工具下载
  · 扫描工具
  · 攻击程序
  · 后门木马
  · 拒绝服务
  · 口令破解
  · 代理程序
  · 防火墙
  · 加密解密
  · 入侵检测
  · 攻防演示
技术文档 > JAVA
SUN样题测试及答案
发表日期:2004-07-26 20:57:13作者: 出处:  


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
返回顶部】 【打印本页】 【关闭窗口

关于我们 / 给我留言 / 版权举报 / 意见建议 / 网站编程QQ群   
Copyright ©2003- 2024 Lihuasoft.net webmaster(at)lihuasoft.net 加载时间 0.00141