Objectives for SCJP (before jdk1.4)

Declarations and Access Control

1.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.

1.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). 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.

1.3 For a given class determine if a default constructor will be created and if so state the prototype of that constructor.

1.4 Identify legal return types for any method given the declarations of all related methods in this or parent classes.

Flow Control and Exception Handling

2.1 Write code using if and switch statements and identify legal argument types for these statements.

2.2 Write code using all forms of loops including labeled and unlabeled, use of break and continue, and state the values taken by loop counter variables during and after loop execution.

2.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.

Garbage Collection

3.1 State the behavior that is guaranteed by the garbage collection system.

3.2 Write code that explicitly makes objects eligible for garbage collection.

Language Fundamentals

4.1 Identify correctly constructed package declarations, import statements, class declarations (of all forms including inner classes) interface declarations, method declarations (including the main method that is used to start execution of a class), variable declarations, and identifiers.

4.2 State the correspondence between index values in the argument array passed to a main method and command line arguments.

4.3 Identify all Java programming language keywords. Note: There will not be any questions regarding esoteric distinctions between keywords and manifest constants.

4.4 State the effect of using a variable or array element of any kind when no explicit assignment has been made to it.

4.5 State the range of all primitive formats, data types and declare literal values for String and all primitive types using all permitted formats bases and representations.

Operators and Assignments

5.1 Determine the result of applying any operator (including assignment operators and instance of) to operands of any type class scope or accessibility or any combination of these.

5.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.

5.3 In an expression involving the operators &, |, &&, || and variables of known values state which operands are evaluated and the value of the expression.

5.4 Determine the effect upon objects and primitive values of passing variables into methods and performing assignments or other modifying operations in that method.

Overloading, Overriding, Runtime Type and Object Orientation

6.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".

6.2 Write code to invoke overridden or overloaded methods and parental or overloaded constructors; and describe the effect of invoking these methods.

6.3 Write code to construct instances of any concrete class including normal top level classes, inner classes, static inner classes, and anonymous inner classes.

Threads

7.1 Write code to define, instantiate and start new threads using both java.lang.Thread and java.lang.Runnable.

7.2 Recognize conditions that might prevent a thread from executing.

7.3 Write code using synchronized, wait, notify or notifyAll to protect against concurrent access problems and to communicate between threads.

7.4 Define the interaction among threads and object locks when executing synchronized, wait, notify or notifyAll.

THE JAVA.AWT PACKAGE*

8.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.

8.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.

8.3 State the event classname for any specified event listener interface in the java.awt.event package.

THE JAVA.LANG PACKAGE*

9.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.

9.2 Describe the significance of the immutability of string objects.

THE JAVA.UTIL PACKAGE*

10.1 Make appropriate selection of collection classes/interfaces to suit specified behavior requirements.

THE JAVA.IO PACKAGE*

11.1 Write code that uses objects of the file class to navigate a file system.

11.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

11.3 Distinguish between conditions under which platform default encoding conversion should be used and conditions under which a specific conversion should be used.

11.4 Select valid constructor arguments for FilterInputStream and FilterOutputStream subclasses from a list of classes in the java.io.package.

11.5 Write appropriate code to read, write and update files using FileInputStream, FileOutputStream, and RandomAccessFile objects.

11.6 Describe the permanent effects on the file system of constructing and using FileInputStream, FileOutputStream, and RandomAccessFile objects.

NOTE: The * section means the new test scope may not include such section