|
|
|
|
LEADER |
00000cam a2200000 a 4500 |
001 |
OR_ocn246985053 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu---unuuu |
008 |
080909s2008 nyua ob 001 0 eng d |
040 |
|
|
|a N$T
|b eng
|e pn
|c N$T
|d OCLCQ
|d YDXCP
|d TEFOD
|d UBY
|d SHH
|d IDEBK
|d E7B
|d OCLCQ
|d B24X7
|d DEBSZ
|d OCLCQ
|d OCLCO
|d OCLCF
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|d TEFOD
|d OCLCQ
|d EBLCP
|d OCLCQ
|d D6H
|d LIV
|d VT2
|d OCLCQ
|d UKAHL
|d OCLCQ
|d OCLCO
|d OCLCQ
|d OCLCO
|
019 |
|
|
|a 277100515
|a 319832073
|a 505096968
|a 646757654
|a 746291756
|a 815683754
|a 1084363974
|a 1103266314
|a 1164492827
|
020 |
|
|
|a 9780071591072
|q (electronic bk.)
|
020 |
|
|
|a 0071591079
|q (electronic bk.)
|
020 |
|
|
|a 1281725595
|
020 |
|
|
|a 9781281725592
|
020 |
|
|
|z 0071591060
|q (set ;
|q alk. paper)
|
020 |
|
|
|z 9780071591065
|q (set ;
|q alk. paper)
|
029 |
1 |
|
|a AU@
|b 000053252215
|
029 |
1 |
|
|a DEBSZ
|b 355393794
|
029 |
1 |
|
|a HEBIS
|b 291467202
|
035 |
|
|
|a (OCoLC)246985053
|z (OCoLC)277100515
|z (OCoLC)319832073
|z (OCoLC)505096968
|z (OCoLC)646757654
|z (OCoLC)746291756
|z (OCoLC)815683754
|z (OCoLC)1084363974
|z (OCoLC)1103266314
|z (OCoLC)1164492827
|
037 |
|
|
|b OverDrive, Inc.
|n http://www.overdrive.com
|
037 |
|
|
|a 194D9B6D-36DB-49B4-ABA3-22C8A39F5103
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a QA76.3
|b .S4686 2008eb
|
072 |
|
7 |
|a COM
|x 051310
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051280
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 051130
|2 bisacsh
|
072 |
|
7 |
|a K
|2 bicssc
|
082 |
0 |
4 |
|a 005.13/3
|2 22
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a Sierra, Kathy.
|
245 |
1 |
0 |
|a SCJP Sun certified programmer for Java 6 study guide :
|b exam (310-065) /
|c Kathy Sierra, Bert Bates.
|
260 |
|
|
|a New York :
|b McGraw-Hill,
|c ©2008.
|
300 |
|
|
|a 1 online resource (xxxvi, 851 pages)
|
336 |
|
|
|a text
|b txt
|2 rdacontent
|
337 |
|
|
|a computer
|b c
|2 rdamedia
|
338 |
|
|
|a online resource
|b cr
|2 rdacarrier
|
490 |
1 |
|
|a McGraw Hill professional
|
500 |
|
|
|a Title from PDF title page (viewed September 9, 2008).
|
505 |
0 |
|
|a Cover13; -- Contents -- Contributors -- Acknowledgments -- Preface -- Introduction -- 1 Declarations and Access Control -- Java Refresher -- Identifiers & JavaBeans (Objectives 1.3 and 1.4) -- Legal Identifiers -- Sun's Java Code Conventions -- JavaBeans Standards -- Declare Classes (Exam Objective 1.1) -- Source File Declaration Rules -- Class Declarations and Modifiers -- Exercise 1-1: Creating an Abstract Superclass and Concrete Subclass -- Declare Interfaces (Exam Objectives 1.1 and 1.2) -- Declaring an Interface -- Declaring Interface Constants -- Declare Class Members (Objectives 1.3 and 1.4) -- Access Modifiers -- Nonaccess Member Modifiers -- Constructor Declarations -- Variable Declarations -- Declaring Enums -- Two-Minute Drill -- Q & A: Self Test -- Self Test Answers -- 2 Object Orientation -- Encapsulation (Exam Objective 5.1) -- Inheritance, Is-A, Has-A (Exam Objective 5.5) -- IS-A -- HAS-A -- Polymorphism (Exam Objective 5.2) -- Overriding / Overloading (Exam Objectives 1.5 and 5.4) -- Overridden Methods -- Overloaded Methods -- Reference Variable Casting (Objective 5.2) -- Implementing an Interface (Exam Objective 1.2) -- Legal Return Types (Exam Objective 1.5) -- Return Type Declarations -- Returning a Value -- Constructors and Instantiation (Exam Objectives 1.6, 5.3, and 5.4) -- Determine Whether a Default Constructor Will Be Created -- Overloaded Constructors -- Statics (Exam Objective 1.3) -- Static Variables and Methods -- Coupling and Cohesion (Exam Objective 5.1) -- Two-Minute Drill -- Q & A: Self Test -- Self Test Answers -- 3 Assignments -- Stack and Heap8212;Quick Review -- Literals, Assignments, and Variables (Exam Objectives 1.3 and 7.6) -- Literal Values for All Primitive Types -- Assignment Operators -- Exercise 3-1: Casting Primitives -- Using a Variable or Array Element That Is Uninitialized and Unassigned -- Local (Stack, Automatic) Primitives and Objects -- Passing Variables into Methods (Objective 7.3) -- Passing Object Reference Variables -- Does Java Use Pass-By-Value Semantics? -- Passing Primitive Variables -- Array Declaration, Construction, and Initialization (Exam Objective 1.3) -- Declaring an Array -- Constructing an Array -- Initializing an Array -- Initialization Blocks -- Using Wrapper Classes and Boxing (Exam Objective 3.1) -- An Overview of the Wrapper Classes -- Creating Wrapper Objects -- Using Wrapper Conversion Utilities -- Autoboxing -- Overloading (Exam Objectives 1.5 and 5.4) -- Garbage Collection (Exam Objective 7.4) -- Overview of Memory Management and Garbage Collection -- Overview of Java's Garbage Collector -- Writing Code That Explicitly Makes Objects Eligible for Collection -- Exercise 3-2: Garbage Collection Experiment -- Two-Minute Drill -- Q & A: Self Test -- Self Test Answers -- 4 Operators -- Java Operators (Exam Objective 7.6) -- Assignment Operators -- Relational Operators -- instanceof Comparison -- Arithmetic Operators -- Conditional Operator -- Logical Operators -- Two-Minute Drill -- Q & A: Self Test -- Self Test Answers -- 5 Flow Control, Exceptions, and Assertions -- if and switch Statements (Exam Objective 2.1) -- if-else Branching -- switch Statements -- Exercise.
|
504 |
|
|
|a Includes bibliographical references and index.
|
520 |
|
|
|a Closely following both the breadth and the depth of the real exam; this study guide will help you prepare for and pass Sun Microsystem's SCJP certification for Java 6 or Java 5. --
|c Edited summary from book.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a Electronic data processing personnel
|x Certification.
|
650 |
|
0 |
|a Operating systems (Computers)
|x Examinations
|v Study guides.
|
650 |
|
0 |
|a Java (Computer program language)
|x Examinations
|v Study guides.
|
650 |
|
6 |
|a Systèmes d'exploitation (Ordinateurs)
|x Examens
|v Guides de l'étudiant.
|
650 |
|
6 |
|a Java (Langage de programmation)
|x Examens
|v Guides de l'étudiant.
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x C♯
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Java.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Programming Languages
|x Pascal.
|2 bisacsh
|
650 |
|
7 |
|a Electronic data processing personnel
|x Certification.
|2 blmlsh
|
650 |
|
7 |
|a Operating systems (Computers)
|x Examinations
|x Study guides.
|2 blmlsh
|
650 |
|
7 |
|a Java (Computer program language)
|x Examinations
|x Study guides.
|2 blmlsh
|
650 |
|
7 |
|a Electronic data processing personnel
|x Certification
|2 fast
|
650 |
|
7 |
|a Java (Computer program language)
|x Examinations
|2 fast
|
650 |
|
7 |
|a Operating systems (Computers)
|x Examinations
|2 fast
|
655 |
|
7 |
|a examination study guides.
|2 aat
|
655 |
|
7 |
|a Study guides
|2 fast
|
655 |
|
7 |
|a Study guides.
|2 lcgft
|
655 |
|
7 |
|a Guides de l'étudiant.
|2 rvmgf
|
700 |
1 |
|
|a Bates, Bert.
|
776 |
0 |
8 |
|i Print version:
|a Sierra, Kathy.
|t SCJP Sun certified programmer for Java 6 study guide : exam (310-065).
|d New York : McGraw-Hill, 2008
|z 9780071591065
|z 9780071591089
|w (DLC) 2008025682
|w (OCoLC)231680413
|
830 |
|
0 |
|a McGraw Hill professional.
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9780071591065/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH25199891
|
938 |
|
|
|a Books 24x7
|b B247
|n bks00026175
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL4657127
|
938 |
|
|
|a ebrary
|b EBRY
|n ebr10240663
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 235047
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n 172559
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 2873794
|
994 |
|
|
|a 92
|b IZTAP
|