文章分类 | 推荐文章 | 最新文章 | 热点文章 | 最新软件 | 精品软件 | 下载排行 | 推荐下载 | 免费看大片 | WPS | 杀毒软件
清风网络
首 页 软件下载 网络学院 数码学院
QQ 电脑入门 游戏 操作系统 图形处理 办公软件 媒体动画 精文荟萃 工具软件 网络编程 程序开发 网络技术 认证考试 网站建设 文章专栏
当前位置:清风网络学院程序开发JavaSCJP学习指南
精品推荐
特别推荐
·实例讲解:Java中的SOAP技术
·Java语言出现的背景 影响及前景
·Java精华积累:初学者都应该搞懂的问题
·Java多媒体框架设计自动播放机实例详解
·如何有效防止Java程序源码被人偷窥?
·Cell插件在J2EE系统中的应用
·初学者想学Hibernate,初级基础教程
·Java语言实现支持视频点播的WEB服务器
·关于Java编程的中文问题的几条分析原则
·确保J2ME无线移动商业应用程序的安全性
·Java开源技术:Eclipse的使用技巧详解
·新手入门:Java中的修饰词使用方法总结
·JAVA开发者应该去的20个英文网站
·使用JDBC创建数据库访问程序
·JDK的命令详解
·Java学习从入门到精通(附FAQ)
·Tomcat性能调整
·JSF:Java中面向Web开发的生旦净末丑
·对Java语言入门初学者的一些建议
·Java技术的新方向
热点TOP10
·Java图形用户界面设计
·在桌面应用中使用JAVA DB
·3D编程指南第一部分:快速进入移动JAVA 3D编程世界
·java swing的拖放例子
·用Java编写的记事本程序(1)
·用Java编写的记事本程序(3)
·JasperReport经验谈
·图解JBuilderX安装与实践
·用java编写的小游戏源代码分析
·struts+spring+ibatis轻量级J2EE开发
·单源点最短路径Dijkstra算法的JAVA实现
·实例讲解:Java中的SOAP技术
·初学者想学Hibernate,初级基础教程
·中国农历二百年算法及年历程序分析一
·用Java实现SMTP服务器
·Java语言出现的背景 影响及前景
·Java Applet 入门第三天
·用Java编写的记事本程序(2)
·Java学习从入门到精通(附FAQ)
·通过JCA实现企业级应用程序的“即插即用”

SCJP学习指南

日期:2007年5月2日 作者: 查看:[大字体 中字体 小字体]



  一、考试信息
  1、考试科目SCJP
  2、考试编号:310-025
  3、考试题型:单选题、多选题、填空题
  4、及格分数:61%
  5、考试时间:120分钟
  6、考试费用:人民币1250元
  二、报考步骤
  1、向Sun培训部购买准考证(Certification Voucher)
  考试中心的相关资料请浏览以下网址:http://www.sylvan.com.cn。若第一次在APTC参加考试,请提供详细的个人信息(姓名,汉语拼音姓名,英文公司名,英文地址,邮编、电话、传真、身份证号码);若已在APTC参加过考试,提供姓名和考生身份证号码(Candidate ID)。
  2、报考流程
  请您详细地填写好考试报名表上的相关资料,按照报名表上的银行资料到银行办理汇款,银行将会给您一张回执,请您将填写好的考试报名表连同银行的回执一起再传真回给我们,我们在收到您的传真件,确认您银行回执填写没有错误或遗漏以确保您的报名费可以顺利到达我公司帐户后,我们将依据您报名表上的填写的地址用EMS给您寄VOUCHER,您收到VOUCHER后就可以与考试中心去预约考试。
  3、考试过程
  请直接与考试中心联络,提供参加的考试的详细资料(考试号码,考试名称,考试语种,考试日期)。考试中心将给您一份考试确认书。你于约定时间至考试中心考试,请携带考试确认书,准考证原件及其它要求证件。题目均为英文(可选择中文),并以电脑作答。
  考试当天携带身份证/护照/军人证和一个辅助证件,在约定时间前到考场参加考试。应严格遵守考场规则。考试结束后您应妥善保管好成绩单。对考场管理有任何意见或建议,请向Prometric公司北京办事处反映。
  三、证书信息
  1、请查询相应公司主页Certification或Education或Training部分。
  2、培训相关信息,请查询相应公司主页;或向APTC咨询,部分APTC同时从事培训。
  3、证书的发放一般由各认证公司负责。Sun公司的主页上有成绩及证书查询功能,网址是:https://www.galton.com/~sun_s/login.html,可以用考生身份证号码(Candidate ID)登录上去查询。证书发放周期各公司稍有出入,一般为一个月。
  四、考试大纲
  1、DECLARATIONS AND ACCESS CONTROL
  1、Write code that declares, constructs, and initializes arrays of any base type using any of the permitted FORMs both for declaration and for initialization
  2、Declare classes, inner classes, methods, instance variables, static variables, and automatic (method local) variables making appropriate use of all permitted modifiers (such as public, final, static, abstract, and so forth)
  3、State the significance of each of these modifiers both singly and in combination, and state the effect of package relationships on declared items qualified by these modifiers
  4、For a given class, determine if a default constructor will be created, and if so, state the prototype of that constructor
  5、State the legal return types for any method given the declarations of all related methods in this or parent classes
  2、FLOW CONTROL AND EXCEPTION HANDLING
  1、Write code using if and switch statements and identify legal argument types for these statements
  2、Write code using all FORMs of loops including labeled and unlabeled use of break and continue, and state the values taken by loop control variables during and after loop execution
  3、Write code that makes proper use of exceptions and exception handling clauses (try, catch, finally) and declares methods and overriding methods that throw exceptions
  3、GARBAGE COLLECTION
  1、State the behavior that is guaranteed by the garbage collection system, and write code that explicitly makes objects eligible for collection
  4、LANGUAGE FUNDAMENTALS
  1、Identify correctly constructed source files, package declarations, import statements, class declarations (of all FORMs including inner classes), interface declarations and implementations (for java.lang.Runnable or other interface described in the test), method declarations (including the main method that is used to start execution of a class), variable declarations and identifiers
  2、State the correspondence between index values in the argument array passed to a main method and command line arguments
  3、Identify all Java programming language keywords and correctly constructed identifiers
  4、State the effect of using a variable or array element of any kind when no explicit assignment has been made to it
  5、State the range of all primitive data types and declare literal values for String and all primitive types using all permitted FORMats, bases, and representations
  5、OPERATORS AND ASSIGNMENTS
  1、Determine the result of applying any operator, including assignment operators, instance of, and casts to operands of any type, class, scope, or accessibility, or any combination of these
  2、Determine the result of applying the boolean equals (Object) method to objects of any combination of the classes java.lang.String, java.lang.Boolean, and java.lang.Object
  3、In an expression involving the operators &, , &&, , and variables of known values, state which operands are evaluated and the value of the expression
  4、Determine the effect upon objects and primitive values of passing variables into methods and perFORMing assignments or other modifying operations in that method
  6、OVERLOADING, OVERRIDING, RUNTIME TYPE, AND OBJECT ORIENTATION
  1、State the benefits of encapsulation in object oriented design and write code that implements tightly encapsulated classes and the relationships "is a" and "has a"
  2、Write code to invoke overridden or overloaded methods and parental or overloaded constructors, and describe the effect of invoking these methods
  3、Write code to construct instances of any concrete class including normal top level classes, inner classes, static inner classes, and anonymous inner classes
  7、THREADS
  1、Write code to define, instantiate, and start new threads using both java.lang.Thread and java.lang.Runnable
  2、Recognize conditions that might prevent a thread from executing
  3、Write code using synchronized, wait, notify, or notifyAll, to protect against concurrent access problems and to communicate between threads.
  4、Define the interaction between threads and between threads and object locks when executing synchronized, wait, notify, or notifyAll
  8、THE JAVA.AWT PACKAGE
  1、Write code using component, container, and LayoutManager classes of the java.awt package to present a Graphical User Interface with specified appearance and resize behavior, and distinguish the responsibilities of layout managers from those of containers
  2、Write code to implement listener classes and methods, and in listener methods, extract inFORMation from the event to determine the affected component, mouse position, nature, and time of the event
  3、State the event classname for any specified event listener interface in the java.awt.event package
  9、THE JAVA.LANG PACKAGE
  1、Write code using the following methods of the java.lang.Math class: abs, ceil, floor, max, min, random, round, sin, cos, tan, and sqrt
  2、Describe the significance of the immutability of string objects
  10、THE JAVA.UTIL PACKAGE
  1、Make appropriate selection of collection classes/interfaces to suit specified behavior requirements
  11、THE JAVA.IO PACKAGE
  1、Write code that uses objects of the file class to navigate a file system
  2、Write code that uses objects of the classes InputStreamReader and outputStreamWriter to translate between Unicode and either platFORM default or ISO 8859-1 character encoding and Distinguish between conditions under which platFORM default encoding conversion should be used and conditions under which a specific conversion should be used
  3、Select valid constructor arguments for FilterInputStream and FilterOutputStream subclasses from a list of classes in the java.io.package
  4、Write appropriate code to read, write and update files using FileInputStream, FileOutputStream, and RandomAccessFile objects
  5、Describe the permanent effects on the file system of
[1] [2] 下一页 




上一篇:台湾SUN的一位scea讲师介绍SCEA

下一篇:SUN CERTIFIED JAVA PROGRAMMER

SCJP学习指南 相关文章:
·教你学习如何破解XP登陆密码
·MPEG、RM、WMV电影文件格式转换指南
·《人工少女2》操作指南 - 游戏手册
·高手进阶,终极内存技术指南——完整/进阶版
·AIX 5L 学习大纲/简易教程(2)(未经许可,请勿COPY)
·暗黑破坏神2:毁灭之王 装备修改指南 - 游戏攻略
·腾讯QQ号码使用完全指南
·从零开始学黑客:网络黑客新手入门指南
·EZ-USB 68013A开发指南
·速度太慢 微软官方发布Vista加速指南
SCJP学习指南 相关软件:
·洪恩轻松教你学电脑_internet学习
·Adobe Photoshop CS 2 简体中文使用指南
·鸟哥的linux私房菜:基础学习篇
·新东方演讲录 俞敏洪老师学习英语与人生奋斗
·zemax教学视频和学习笔记
·Office 2003 教程完全指南
·8首国内知名摇滚乐队的mv(唐朝、黑豹、郑钧、何勇、指南针……)
·双向式英语学习法mp3+文档
·学习Flash 8中的ActionScript 2.0
·新东方演讲录 俞敏洪老师学习英语与人生奋斗 RMVB

特别声明:本站除部分特别声明禁止转载的专稿外的其他文章可以自由转载,但请务必注明出处和原始作者。文章版权归文章原始作者所有。对于被本站转载文章的个人和网站,我们表示深深的谢意。如果本站转载的文章有版权问题请联系编辑人员,我们尽快予以更正。
[打印本页] [关闭窗口] 转载请注明来源:http://www.viphot.com
| 帮助(?) | 版权声明 | 友情连接 | 关于我们 | 信息发布
Copyright 2007 www.viphot.com All Rights Reserved. 鄂ICP备05000083号Powered by:viphot