• 网络学院
  • 新手学堂
  • 操作系统
  • 网络技术
  • 软件应用
  • 办公软件
  • 编程技术
  • 网站架设
  • 数据库类
  • 平面设计
  • 多媒体类
  • 游戏资讯
  • 教学论文
  • 认证考试
SCJP
广告位
  站点:
  • 首 页
  • 最新软件
  • 最新文章
  • 国内软件
  • 国外软件
  • 汉化软件
  • 源码下载
  • 字体下载
SCJP Mock Exam 1(1)
软件发布 SCJP Mock Exam 1(1)
网络软件 系统工具 应用软件 联络聊天 图形图像 多媒体类 行业软件 游戏娱乐 编程开发 安全相关 教育教学 数码软件
热门软件: QQ 瑞星 pplive e话通 木马克星 千千静听 office2000 五笔字根 Photoshop 视频分割
返回首页 | 文章首页 | 认证考试 | JAVA认证 | JAVA题库 | SCJP Mock Exam 1(1)

SCJP Mock Exam 1(1)

 

添加时间: 2007-9-23 2:33:26  作者: JAVA题库  阅读次数:103   来源: http://www.d9soft.com

 

 

       

转Q1
A method is ...

1) an implementation of an abstraction.
2) an attribute defining the property of a particular abstraction.
3) a category of objects.
4) an operation defining the behavior for a particular abstraction.
5) a blueprint for making operations.

Q2
An object is ...

1) what classes are instantiated from.
2) an instance of a class.
3) a blueprint for creating concrete realization of abstractions.
4) a reference to an attribute.
5) a variable.

Q3
Which line contains a constructor in this class definition?

public class Counter { // (1)
int current, step;
public Counter(int startValue, int stepValue) { // (2)
set(startValue);
setStepValue(stepValue);
}
public int get() { return current; } // (3)
public void set(int value) { current = value; } // (4)
public void setStepValue(int stepValue) { step = stepValue; } // (5)
}

1) Code marked with (1) is a constructor
2) Code marked with (2) is a constructor
3) Code marked with (3) is a constructor
4) Code marked with (4) is a constructor
5) Code marked with (5) is a Constructor

Q4
Given that Thing is a class, how many objects and reference variables are created by the following code?

Thing item, stuff;
item = new Thing();
Thing entity = new Thing();

1) One object is created
2) Two objects are created
3) Three objects are created
4) One reference variable is created
5) Two reference variables are created
6) Three reference variables are created.

Q5
An instance member…

1) is also called a static member
2) is always a variable
3) is never a method
4) belongs to a single instance, not to the class as a whole
5) always represents an operation

Q6
How do objects pass messages in Java ?

1) They pass messages by modifying each other's member variables
2) They pass messages by modifying the static member variables of each other's classes
3) They pass messages by calling each other's instance member methods
4) They pass messages by calling static member methods of each other's classes.

Q7
Given the following code, which statements are true?

class A {
int value1;
}
class B extends A {
int value2;
}

1) Class A extends class B.
2) Class B is the superclass of class A.
3) Class A inherits from class B.
4) Class B is a subclass of class A.
5) Objects of class A have a member variable named value2.

Q8
If this source code is contained in a file called SmallProg.java, what command should be used to compile it using the JDK?

public class SmallProg {
public static void main(String args[]) { System.out.println("Good luck!"); }
}

1) java SmallProg
2) avac SmallProg
3) java SmallProg.java
4) javac SmallProg.java
5) java SmallProg main

Q9
Given the following class, which statements can be inserted at position 1 without causing the code to fail compilation?

public class Q6db8 {
int a;
int b = 0;
static int c;
public void m() {
int d;
int e = 0;
// Position 1
}
}

1) a++;
2) b++;
3) c++;
4) d++;
5) e++;

Q10
Which statements are true concerning the effect of the >> and >>> operators?

1) For non-negative values of the left operand, the >> and >>> operators will have the same effect.
2) The result of (-1 >> 1) is 0.
3) The result of (-1 >>> 1) is -1.
4) The value returned by >>> will never be negative as long as the value of the right operand is equal to or greater than 1.
5) When using the >> operator, the leftmost bit of the bit representation of the resulting value will always be the same bit value as the leftmost bit of the bit representation of the left operand.

 

 

 

上下文章:

 

上一篇文章: SCJP模拟试题[2](3) 下一篇文章: SCJP Mock Exam 1(2)

相关文章:

  • Sandy’socp1z0-001Exam
  • SCJP Mock Exam 2(2)
  • SCJP Mock Exam 2(1)
  • SCJP Mock Exam 1(8)
  • SCJP Mock Exam 1(7)

相关软件:

  • ExamXML V4.20
  • ExamDiff Pro V3.3 汉化版
  • ExamDiff V1.6m
  • ExamDiff Pro V3.4 beta 1223
  • Examine32 4.03 汉化版
  • Examine32 4.3

 

 

快速导航

  • 网络学院
  • 精品汇聚
  • 字体下载
  • 教程下载
  • ASP源码
  • PHP源码
  • Net源码
  • JSP 源码

JAVA认证分类导航

  • JAVA动态
  • JAVA指导
  • JAVA题库

本类经典文章推荐

  • SCJP模拟试题[2](2)
  • SCJP模拟试题[2](1)
  • SCJP考试真题和解析[1](2)
  • SCJP Mock Exam 3(1)
  • SCJP考试题310-025[5](1)
  • Java网络编程之URI、URL研究专题一
  • Java认证模拟题及分析(1)
  • SCJP模拟试题[1](3)
  • Java认证模拟题及分析(3)
  • SCJP考试真题和解析[2](3)

JAVA题库阅读排行

  • JAVA题库:考考你4
  • SCJP Mock Exam 2(2)
  • JAVA题库:考考你2
  • Java认证模拟题及分析(3)
  • Java认证模拟题及分析(1)
  • SCJP考试真题和解析[1](2)
  • JAVA题库:格林模拟试题一(上)(2)
  • SCJP模拟试题[2](3)
  • SCJP模拟试题[2](1)
  • SCJP考试真题和解析[1](1)

JAVA认证阅读总排行

  • JAVA题库:考考你4
  • SCJP Mock Exam 2(2)
  • JAVA题库:考考你2
  • Java认证模拟题及分析(3)
  • Java认证模拟题及分析(1)
  • SCJP考试真题和解析[1](2)
  • JAVA题库:格林模拟试题一(上)(2)
  • SCJP模拟试题[2](3)
  • SCJP模拟试题[2](1)
  • SCJP考试真题和解析[1](1)

广告位置

字母检索 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 回到顶部

关于我们 | 版权声明 | 免责条款 | 广告联系 | 软件发布 | 下载帮助 | 下载排行 | 网站地图 | 特别鸣谢 | 友情连接

copyright; 2005-2008 D9soft.com 第九软件网 版权所有