Dr. S. R. Lasker Library Online Catalogue

Home      Library Home      Institutional Repository      E-Resources      MyAthens      EWU Home

Java 2 certification exam guide for programmers and developers / (Record no. 1955)

MARC details
000 -LEADER
fixed length control field 07233cam a2200373 a 4500
001 - CONTROL NUMBER
control field 1955
003 - CONTROL NUMBER IDENTIFIER
control field BD-DhEWU
005 - DATE AND TIME OF LATEST TRANSACTION
control field 20160211020002.0
008 - FIXED-LENGTH DATA ELEMENTS--GENERAL INFORMATION
fixed length control field 000731s2000 nyua g 001 0 eng d
020 ## - INTERNATIONAL STANDARD BOOK NUMBER
International Standard Book Number 0079137407
Cancelled/invalid ISBN 9780070068872
International Standard Book Number 0074635220
035 ## - SYSTEM CONTROL NUMBER
System control number (OCoLC)ocm43291486
040 ## - CATALOGING SOURCE
Original cataloging agency JRZ
Transcribing agency JRZ
Modifying agency TXA
-- DLC
-- BD-DhEWU
Language of cataloging eng
041 ## - LANGUAGE CODE
Language code of text/sound track or separate title eng
050 00 - LIBRARY OF CONGRESS CALL NUMBER
Classification number QA76.3
Item number .B658 2000
082 04 - DEWEY DECIMAL CLASSIFICATION NUMBER
Classification number 005.133'078
Item number BOJ 2000
100 1# - MAIN ENTRY--PERSONAL NAME
Personal name Boone, Barry.
9 (RLIN) 15041
245 10 - TITLE STATEMENT
Title Java 2 certification exam guide for programmers and developers /
Statement of responsibility, etc by Barry Boone and William R. Stanek.
246 14 - VARYING FORM OF TITLE
Title proper/short title All-in-one Java 2 exam guide
260 ## - PUBLICATION, DISTRIBUTION, ETC. (IMPRINT)
Place of publication, distribution, etc New York ;
-- New Delhi :
Name of publisher, distributor, etc McGraw-Hill,
Date of publication, distribution, etc c2000.
300 ## - PHYSICAL DESCRIPTION
Extent xxii, 687 p. :
Other physical details ill. ;
Dimensions 25 cm.
500 ## - GENERAL NOTE
General note Includes index.
505 ## - FORMATTED CONTENTS NOTE
Formatted contents note Part I Studying for the Programmer's Exam 13 --<br/>Chapter 1 Taking the Programmer Exam 15 --<br/>What Is the Programmer Exam Like? 16 --<br/>How Does the Text Map to the Programmer's Exam Objectives? 20 --<br/>How the Test Is Administered 21 --<br/>How to Sign Up and Take the Exams 21 --<br/>Test-Taking Tips for the Programmer Exam 23 --<br/>Sun's Take on Certification 28 --<br/>Where Certification Is Heading 30 --<br/>Chapter 2 Java Programming Essentials 31 --<br/>Object-Oriented Relationships Using "Is a" and "Has a" 33 --<br/>Review: Classes, Variables, and Methods 36 --<br/>Creating a Package 42 --<br/>Class Keywords 46 --<br/>Ordering of a Java Source File 50 --<br/>Variable and Method Keywords 51 --<br/>Access Control Keywords 53 --<br/>Casting Classes 59 --<br/>Interfaces 61 --<br/>Static Initializers 65 --<br/>Chapter 3 Keywords and Constructors 79 --<br/>Organizing Classes 82 --<br/>Keywords for Classes and Members 83 --<br/>Simple Data Types 85 --<br/>Values and Variables 85 --<br/>Exception Handling 86 --<br/>Instance Creation and Testing 87 --<br/>Control Flow 88 --<br/>The Default Constructor 91 --<br/>Defining, Overloading, and Overriding a Constructor 92 --<br/>Invoking Another Constructor 94 --<br/>Chapter 4 Memory and Garbage Collection 103 --<br/>Garbage Collection 105 --<br/>Finalization 107 --<br/>Passing Parameters to a Method 110 --<br/>What's Not on the Test --<br/>Forcing Garbage Collection 115 --<br/>Chapter 5 Data Types and Values 123 --<br/>Data Types 124 --<br/>Arrays 130 --<br/>Initializing an Array When It is Allocated 131 --<br/>Chapter 6 Operators 139 --<br/>Operators 141 --<br/>Bitwise Operators 145 --<br/>Testing for an Objects Class Type 151 --<br/>Equals() and == 152 --<br/>Operator Precedence and Evaluation Order 154 --<br/>Chapter 7 Control Flow 163 --<br/>Objectives for This Chapter 164 --<br/>Nested loops 164 --<br/>Labels 166 --<br/>Nested if and else Statements 168 --<br/>Legal Values for if Statements 169 --<br/>Switch and Case Statements 170 --<br/>While and Do-While Statements 172 --<br/>Using && and 172 --<br/>Chapter 8 Exceptions 179 --<br/>Rethrowing an Exception 187 --<br/>Which Exceptions a Method Can Throw 189 --<br/>Exceptions in an Overriding Method in a Subclass 190 --<br/>Creating and Throwing an Exception 192 --<br/>Chapter 9 Methods 205 --<br/>Defining a Method 206 --<br/>Overloading a Method 207 --<br/>Overriding a Method 209 --<br/>Object References to Base and Derived Classes 213 --<br/>Declaring Native Methods 215 --<br/>Chapter 10 Essential java.lang and java.util 221 --<br/>Wrapper Classes 222 --<br/>Working with the Math Class 227 --<br/>The String and StringBuffer Classes 231 --<br/>Collections 239 --<br/>Chapter 11 Input/Output 253 --<br/>Objectives for This Chapter 254 --<br/>The java.io Package 255 --<br/>The File Class 262 --<br/>RandomAccessFiles 268 --<br/>File Descriptors 270 --<br/>Chapter 12 Passing Arguments to Programs 277 --<br/>The main() Method 278 --<br/>Command-Line Arguments 280 --<br/>When main() Ends 282 --<br/>Embedding an Applet in an HTML Page 282 --<br/>Passing Parameters to an Applet 284 --<br/>Retrieving Parameters 285 --<br/>Customizing an Applet 287 --<br/>Chapter 13 Threads 297 --<br/>An Overview of Threads 298 --<br/>Creating Threads with java.lang. 303 --<br/>Monitors and Synchronization 308 --<br/>Why a Thread Might Not Execute 320 --<br/>Other Useful Thread Methods 321 --<br/>Chapter 14 Graphics, Components, and Layout 329 --<br/>The Abstract Windowing Toolkit (AWT) 331 --<br/>Drawing Using a Graphics Object 336 --<br/>The Image Class 344 --<br/>How Java Arranges Components within Containers 345 --<br/>The Component Class, Subclasses and Methods 346 --<br/>Key Component Methods 352 --<br/>Using Layout Managers 356 --<br/>Default Layout Managers 367 --<br/>Chapter 15 Events 373 --<br/>Event Classes 374 --<br/>Listening for Events 376 --<br/>The Listener Interfaces 379 --<br/>Implementing a Listener Interface 383 --<br/>Semantic and Low-Level Events 384 --<br/>AWTEvent Subclasses 386 --<br/>Extending Adapter Classes 390 --<br/>Chapter 16 Inner Classes 397 --<br/>Inner Classes 398 --<br/>Anonymous Classes 402 --<br/>Static Inner Classes 402 --<br/>Part II Studying for the Developer's Exam 409 --<br/>Chapter 17 The Developer Exam Roadmap 411 --<br/>Concepts You Should Know Before Getting Started 413 --<br/>The Programming Assignment 414 --<br/>The Essay Exam 417 --<br/>How to Sign Up for and Take the Exams 418 --<br/>How to Acquire the Programming Assignment for the Developer Test 420 --<br/>Strategies for Approaching the Developer Assignment 421 --<br/>Chapter 18 Developing With Java 423 --<br/>Styles and Conventions 425 --<br/>Error Handling 426 --<br/>Java's Documentation Problem 428 --<br/>javadoc Tags 432 --<br/>Rules for Using javadoc Comments and Tags 437 --<br/>Examples of javadoc Comments and Tags 438 --<br/>Abstract Classes 440 --<br/>Interfaces 442 --<br/>Packages 443 --<br/>Defining Access Methods 446 --<br/>Chapter 19 Accessing and Managing Databases 455 --<br/>Create Your Own Databases 457 --<br/>Accessing Databases from Multiple Clients 460 --<br/>Two-Tiered and Three-Tiered Architectures 461 --<br/>Using Java APIs 462 --<br/>Remote Method Invocation (RMI) 462 --<br/>Defining a Remote Interface 463 --<br/>Defining a Remote Class 464 --<br/>Invoking Remote Objects 469 --<br/>Java Database Connectivity (JDBC) 473 --<br/>An Example of Using ODBC with Microsoft Access 477 --<br/>Chapter 20 Network Programming and Communication 485 --<br/>A TCP/IP Primer 486 --<br/>Ports and Sockets 489 --<br/>Streams 490 --<br/>Designing Servers and Clients 491 --<br/>Handling Multiple Clients 492 --<br/>Client Issues 494 --<br/>The Networking Package 495 --<br/>Internet Streams 499 --<br/>Client-Server Examples 500 --<br/>Writing a Single-Client Server in Java 501 --<br/>Writing a Multi-Client Server in Java 510 --<br/>Uniform Resource Locator (URL) 521 --<br/>Chapter 21 Designing Application Interfaces 533 --<br/>Mix and Match 535 --<br/>Changing Your Look 543 --<br/>Working with Frames 546 --<br/>Part III Practice Exam 555 --<br/>Chapter 22 Sun Certified Programmer Practice Exam 557 --<br/>Chapter 24 Sun Certified Developer Practice Exam 613 --<br/>Chapter 25 The Sun-Certified Developer Practice Essay Exam 651.
Title TOC
520 ## - SUMMARY, ETC.
Summary, etc <br/><br/>This new edition of the text has been updated and expanded for Java 1.2, and provides a guide to passing the Java 1.2 certification exam. Included is a sampler CD from Digital Think, the online course component of this work.
526 ## - STUDY PROGRAM INFORMATION NOTE
Program name CSE
590 ## - LOCAL NOTE (RLIN)
Local note Shamima Yeasmin
650 #0 - SUBJECT ADDED ENTRY--TOPICAL TERM
Topical term or geographic name as entry element Electronic data processing personnel
General subdivision Certification.
9 (RLIN) 15042
Topical term or geographic name as entry element Programming languages (Electronic computers)
General subdivision Examinations
Form subdivision Study guides.
9 (RLIN) 15043
Topical term or geographic name as entry element Java (Computer program language)
9 (RLIN) 15044
700 1# - ADDED ENTRY--PERSONAL NAME
Personal name Stanek, William R.
9 (RLIN) 15045
856 ## - ELECTRONIC LOCATION AND ACCESS
Materials specified WorldCat details
Uniform Resource Identifier http://www.worldcat.org/title/java-2-certification-exam-guide-for-programmers-and-developers/oclc/43291486&referer=brief_results
942 ## - ADDED ENTRY ELEMENTS (KOHA)
Source of classification or shelving scheme Dewey Decimal Classification
Koha item type Text
Koha issues (borrowed), all copies 1
953 ## - Fulltext in GSDL
Is Fulltext Available in GSDL? Not Avaialable
Holdings
Withdrawn status Lost status Source of classification or shelving scheme Damaged status Not for loan Collection code Home library Current library Shelving location Date acquired Source of acquisition Cost, normal purchase price Total Checkouts Full call number Barcode Copy number Koha item type Date last seen Date checked out Price effective from
    Dewey Decimal Classification   Not For Loan Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Reserve Section 09/10/2000 Karim International 474.00   005.133'078 BOJ 8239 C-1 Text      
    Dewey Decimal Classification     Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Circulation Section 09/10/2000 Smart Books   2 005.133 078 BOJ 2000 8242 C-3 Text 17/02/2016 10/02/2016  
    Dewey Decimal Classification   Not For Loan Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Reserve Section 09/10/2000 Smart Books 474.00 1 005.133 078 BOJ 2000 8241 C-2 Text 15/11/2011 13/11/2011  
    Dewey Decimal Classification     Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Audio Visual 19/05/2003 Karim International     005.133'078 BOJ 2000 CD-100 C-1 CDs & DVDs 12/10/2014   12/10/2014
    Dewey Decimal Classification     Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Audio Visual 19/05/2003 Smart Books     005.133'078 BOJ 2000 CD-102 C-3 CDs & DVDs 12/10/2014   12/10/2014
    Dewey Decimal Classification     Non-fiction Dr. S. R. Lasker Library, EWU Dr. S. R. Lasker Library, EWU Audio Visual 19/05/2003       005.133078 BOJ 2000 CD-120 C-2 CDs & DVDs 09/12/2014   09/12/2014