亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb

首頁 > 學院 > 開發設計 > 正文

SCJP學習指南

2019-11-18 11:46:06
字體:
來源:轉載
供稿:網友

  一、考試信息
  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

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
亚洲香蕉成人av网站在线观看_欧美精品成人91久久久久久久_久久久久久久久久久亚洲_热久久视久久精品18亚洲精品_国产精自产拍久久久久久_亚洲色图国产精品_91精品国产网站_中文字幕欧美日韩精品_国产精品久久久久久亚洲调教_国产精品久久一区_性夜试看影院91社区_97在线观看视频国产_68精品久久久久久欧美_欧美精品在线观看_国产精品一区二区久久精品_欧美老女人bb
在线亚洲午夜片av大片| 欧美日韩国产页| 色无极影院亚洲| 日韩一二三在线视频播| 不卡毛片在线看| 欧美成人sm免费视频| 在线观看日韩视频| 国产99在线|中文| 亲子乱一区二区三区电影| 久久久久久久久久久亚洲| 青青青国产精品一区二区| 日韩高清有码在线| 狠狠色狠色综合曰曰| 欧洲美女免费图片一区| 国产精品偷伦一区二区| 精品在线小视频| 国产精品第一区| 国产精品日韩在线观看| 日韩av片电影专区| 精品国产欧美一区二区五十路| 亲爱的老师9免费观看全集电视剧| 欧美性xxxxxxx| 久久久久中文字幕2018| 欧美猛少妇色xxxxx| 亚洲自拍小视频| 日韩亚洲欧美中文在线| 91精品视频播放| 欧美性猛交视频| 欧美日韩xxx| 欧美最猛黑人xxxx黑人猛叫黄| 欧美精品生活片| 久久男人av资源网站| 亚洲日韩中文字幕在线播放| 久久精品亚洲热| 亚洲a区在线视频| 日本不卡视频在线播放| 国产欧美日韩精品专区| 亚洲剧情一区二区| 精品久久久久久电影| 欧美美最猛性xxxxxx| 亚洲欧美中文另类| 免费97视频在线精品国自产拍| 国产专区欧美专区| 国内揄拍国内精品少妇国语| 一本大道久久加勒比香蕉| 精品女厕一区二区三区| 亚洲加勒比久久88色综合| 欧美丰满少妇xxxxx做受| 51精品国产黑色丝袜高跟鞋| 性欧美在线看片a免费观看| 欧美日韩美女在线观看| 国产成人精品视| 亚洲人成在线播放| 久久免费在线观看| 18性欧美xxxⅹ性满足| 亚洲美女福利视频网站| 91精品国产自产91精品| 亚洲欧美制服中文字幕| 深夜福利国产精品| 狠狠色狠狠色综合日日小说| 国产精品嫩草影院久久久| 欧美激情在线视频二区| 久久久精品国产| …久久精品99久久香蕉国产| 亚洲一区二区日本| 国产精品日韩在线一区| 日韩免费在线免费观看| 日本久久精品视频| 成人激情视频在线播放| 成人网中文字幕| 欧美成人精品在线观看| 国内外成人免费激情在线视频| www.亚洲人.com| 国产精品男女猛烈高潮激情| 欧美色视频日本高清在线观看| 亚洲人成电影在线| 91久久精品久久国产性色也91| 久久久成人精品视频| 欧美色视频日本高清在线观看| 久久久免费精品视频| 在线成人激情视频| 一区二区三区视频观看| 亚洲激情视频网| 日韩综合视频在线观看| 国产精品久久久久久久午夜| 国产精品露脸av在线| 中文字幕在线亚洲| 亚洲黄色免费三级| 欧美日韩中文在线| 久久天天躁日日躁| 欧美wwwxxxx| 另类少妇人与禽zozz0性伦| 91精品综合久久久久久五月天| 欧美精品久久久久久久| 九九热r在线视频精品| 日韩av毛片网| 性色av一区二区三区在线观看| 懂色av中文一区二区三区天美| 亚洲欧洲日产国码av系列天堂| 日韩在线视频网| 久久福利网址导航| 国产精品日日做人人爱| 国产精品福利小视频| 91精品一区二区| 久久香蕉国产线看观看av| 欧美成人精品在线观看| 亚洲福利视频专区| 亚洲欧美国产精品va在线观看| 久久国产精品影片| 国产精品一二三在线| 亚洲成色777777女色窝| 久久精品成人欧美大片古装| 日韩视频在线观看免费| 欧美激情视频在线免费观看 欧美视频免费一| 欧美日韩国产一区在线| 国产在线视频欧美| 亚洲乱码国产乱码精品精| 欧美日韩第一视频| 久热爱精品视频线路一| 欧美激情三级免费| 久久久久久久久网站| 国产精品美乳一区二区免费| 国内精品久久久| 欧美大片va欧美在线播放| 日韩av色在线| 欧美大片欧美激情性色a∨久久| 亚洲国产精久久久久久| 中文字幕免费精品一区高清| 欧美—级a级欧美特级ar全黄| 欧美成年人视频网站| 国产精品影片在线观看| 国产亚洲精品日韩| 美日韩精品免费视频| 亚洲欧美在线一区| 亚洲在线第一页| 亚洲日本欧美中文幕| 亚洲一区美女视频在线观看免费| 91久久久亚洲精品| 日韩国产高清视频在线| 欧美精品激情在线观看| 国产精品久久久久久久久久久久久| 日韩精品一二三四区| 国产午夜精品一区二区三区| 成人欧美一区二区三区在线湿哒哒| 秋霞午夜一区二区| 国产精品欧美久久久| 国产成人高清激情视频在线观看| 欧美精品成人91久久久久久久| 精品久久久久久久久国产字幕| 欧美福利视频网站| 国产精品69av| 成人黄色免费在线观看| 久久国产精品影视| 日韩欧美国产免费播放| 青青草成人在线| 欧美高清视频在线播放| 国产欧美日韩免费看aⅴ视频| 亚洲人线精品午夜| 日韩中文字幕国产| 亚洲成成品网站| 日韩欧美国产视频| 中文字幕亚洲一区在线观看| 欧美电影在线观看完整版| 欧美视频在线视频|