ExitCertified Training Training with Java Solaris Red Hat IBM Symantec Siebel PeopleSoft Certified
 
Start
Training Courses and Schedules
Training Savings
IT Certification
Training Solutions
Loading
Trust Your IT Training   |
Oracle University Awards ExitCertified Corporation with North American Partner of the Year.

Email Training Course

Java Programming Language - Self-Study CD Course  (CDJ-275-SE6)

Format: Self-Paced DVD/CD
Other Formats:
 
 

Learn to develop applications using the Java Programming Language in this foundation course that covers the syntax of the Java language, objective-oriented programming, creating graphical user interfaces (GUIs), exceptions, file input/output (I/O), creating multi-threaded applications and networked applications. Practice your skills with labs that range from simple to complex with experienced instructors who answer your questions and guide your learning experience. Use this course to learn the language and prepare for the Sun Certified Java Programmer Exam!

Students who can benefit from this course
  • Programmers who are interested in adding the Java programming language to their list of skills
  • Students who are preparing for the Sun Certified Programmer for Java (SCJP) exami

 
 

Skills Gained

 
  • Implement input/output (I/O) functionality to read from and write to data and text files and understand advanced I/O streams

  • Create a simple Transmission Control Protocol/Internet Protocol (TCP/IP) networked client that communicates with a server through sockets

  • Create multi-threaded programs

  • Create Java technology applications that leverage the object-oriented features of the Java language, such as encapsulation, inheritance, and polymorphism

  • Execute a Java technology application from the command line

 
  • Use Java data types and expressions

  • Use Java flow control constructs

  • Use arrays and other data collections

  • Implement error-handling techniques using exception handling

  • Create an event-driven graphical user interface (GUI) using Swing components: panels, buttons, labels, text fields, and text areas

Prerequisites

 
  • Understand object-oriented principles

  • Fundamentals of the Java Programming Language (CDJ-110-SE6)

 
  • Be competent in creating programs in any programming language

  • Create and edit text files using a text editor

 
Buy This Training
Enroll For This Class
Sun Microsystems Training Course This self-paced course is Certified By Sun Microsystems.

ExitCertified is the only Authorized Sun Education Partner in Canada, and the largest Sun reseller in North America.

There is a difference....learn more.
Buy Training Now Ask A Question About This Training
Code: CDJ-275-SE6
Format: Self-Paced DVD/CD
Length:
Certified By: Sun Microsystems
Tuition (CAD): $1,003
Browse Similar Training Classes
Related training classes
MVP Virtual Training = In-Class Multimedia Video Presence (MVP) Training. Learn More.
Sort Schedule By: 
Vancouver, BC Aug.30 - Sep.3.2010 course register
Vancouver, BC Nov.29 - Dec.3.2010 course register
Calgary, AB Aug.30 - Sep.3.2010 MVP Virtual Training course register
Calgary, AB Nov.29 - Dec.3.2010 MVP Virtual Training course register
Edmonton, AB Nov.29 - Dec.3.2010 MVP Virtual Training course register
Toronto, ON Aug.30 - Sep.3.2010 course register
Toronto, ON Nov.15 - Nov.19.2010 course register
Ottawa, ON Nov.15 - Nov.19.2010 MVP Virtual Training course register
Montreal, QC Oct.18 - Oct.22.2010 course register
     
   
Request Other Course Date Request Course On-Site
 

Java Programming Language - Self-Study CD Course  (CDJ-275-SE6) Content Details

 
 
Getting Started
  • Examine Java technology
  • Analyze a simple Java technology application
  • Execute a Java technology application
Object-Oriented Programming
  • Define modeling concepts: abstraction, encapsulation, and packages
  • Discuss Java technology application code reuse
  • Define class, member, attribute, method, constructor, and package
  • Use the access modifiers private and public as appropriate for the guidelines of encapsulation
  • Invoke a method on a particular object
  • Use the Java technology API online documentation
Identifiers, Keywords, and Types
  • Use comments in a source program
  • Distinguish between valid and invalid identifiers
  • Use the eight primitive types
  • Define literal values for numeric and textual types
  • Define the terms primitive variable and reference variable
  • Declare variables of class type
  • Construct an object using new and describe default initialization
  • Describe the significance of a reference variable
Expressions and Flow Control
  • Distinguish between instance and local variables
  • Describe how to initialize instance variables
  • Recognize, describe, and use Java software operators
  • Distinguish between legal and illegal assignments of primitive types
  • Identify boolean expressions and their requirements in control constructs
  • Recognize assignment compatibility and required casts in fundamental types
  • Use if, switch, for, while, and do constructions and the labeled forms of break and continue as flow control structures in a program
Arrays
  • Declare and create arrays of primitive, class, or array types
  • Explain why elements of an array are initialized
  • Explain how to initialize the elements of an array
  • Determine the number of elements in an array
  • Create a multidimensional array
  • Write code to copy array values from one array to another
Class Design
  • Define inheritance, polymorphism, overloading, overriding, and virtual method invocation
  • Use the access modifiers protected and the default (package-friendly)
  • Describe the concepts of constructor and method overloading
  • Describe the complete object construction and initialization operation
Advanced Class Features
  • Create static variables, methods, and initializers
  • Create final classes, methods, and variables
  • Create and use enumerated types
  • Use the static import statement
  • Create abstract classes and methods
  • Create and use an interface
Exceptions and Assertions
  • Define exceptions
  • Use try, catch, and finally statements
  • Describe exception categories
  • Identify common exceptions
  • Develop programs to handle your own exceptions
  • Use assertions
  • Distinguish appropriate and inappropriate uses of assertions
  • Enable assertions at runtime
 
Collections and Generics Framework
  • Describe the general purpose implementations of the core interfaces in the Collections framework
  • Examine the Map interface
  • Examine the legacy collection classes
  • Create natural and custom ordering by implementing the Comparable and Comparator interfaces
  • Use generic collections and type parameters in generic classes
  • Refactor existing non-generic code
  • Write a program to iterate over a collection
  • Examine the enhanced for loop
I/O Fundamentals
  • Write a program that uses command-line arguments and system properties
  • Examine the Properties class
  • Construct node and processing streams, and use them appropriately
  • Serialize and deserialize objects
  • Distinguish readers and writers from streams, and select appropriately between them
Console I/ O and File I/O
  • Read data from the console
  • Write data to the console
  • Describe files and file I/O
Building Java GUIs Using the Swing API
  • Describe the JFC Swing technology
  • Identify the Swing packages
  • Describe the GUI building blocks: containers, components, and layout managers
  • Examine top-level, general-purpose, and special-purpose properties of container
  • Examine components
  • Examine layout managers
  • Describe the Swing single-threaded model
  • Build a GUI using Swing components
Handling GUI-Generated Events
  • Define events and event handling
  • Examine the Java SE event model
  • Describe GUI behavior
  • Determine the user action that originated an event
  • Develop event listeners
  • Describe concurrency in Swing-based GUIs and describe the features of the SwingWorker class
GUI-Based Applications
  • Describe how to construct a menu bar, menu, and menu items in a Java GUI
  • Understand how to change the color and font of a component
Threads
  • Define a thread
  • Create separate threads in a Java technology program, controlling the code and data that are used by that thread
  • Control the execution of a thread and write platform-independent code with threads
  • Describe the difficulties that might arise when multiple threads share data
  • Use wait and notify to communicate between threads
  • Use synchronized to protect data from corruption
Networking
  • Develop code to set up the network connection
  • Understand TCP/IP
  • Use ServerSocket and Socket classes to implement TCP/IP clients and servers


  ExitCertified Training with Java Solaris Red Hat IBM Symantec Apple MySQL Siebel PeopleSoft  
  When you take a certified course with ExitCertified, you are learning from the creators of the products you use. Our commitment to your IT community, along with our authorization to deliver certified courses, ensures you receive a premium training experience.

There is a difference. Learn from the source.
 
Training Contacts  
   
Canada United States

Vancouver Training :: 604.633.3948
Victoria Training :: 1.866.328.3948
Calgary Training :: 403.291.2855
Edmonton Training :: 780.441.3948
Regina Training :: 1.866.328.3948
Toronto Training :: 416.487.3948
Ottawa Training :: 613.232.3948
Montreal Training :: 514.876.1666
Quebec City Training :: 514.876.1666

Sacramento Training :: 916.669.3970
San Francisco Training :: 415.975.3948
San Jose Training :: 408.288.3948
Las Vegas Training :: 1.800.803.3948
Phoenix Training :: 602.889.9350
Worldwide - 613.232.3948 Got Questions?
We are happy to help. Just email us with this form and we'll get back to you shortly.
   



(c) 2010 ExitCertified Corp. All rights reserved.


ExitCertified is a global provider of authorized technology training. Some of our popular course topic include:
 
Sun Microsystems Training Oracle Training Symantec Training IBM Training Red Hat - Linux Training
Java Training, J2EE Training, JSP Training, Java Courses, Servlets Training, EJB Training, Struts Training, Networking Courses, Solaris Training, Java Composite Application Platform (JCAPS) Training, Java Certification, SeeBeyond Training, XML Training, Solaris Certification, Corporate Training PeopleSoft Training, 11g Training, 11g Certification, Oracle SQL, Oracle PL/SQL, DBA Training, Oracle Certification, Hyperion Training, Fusion Middleware Training, 10g Training, Siebel Training, JD Edwards Training, Stellent Class, BEA Courses, e-Business Suite Altiris Training, NetBackup Training, Veritas Training, Symantec Certification, Virus Protection Courses, IT Security Training DB2 Training, Cognos Classes, WebSphere Training, CICS Training, Informix, Rational Training, Lotus, Notes and Domino Training, Tivoli Courses, AIX Class, CISCO Training, VMWare Training SUSE Training, RedHat Training , JBoss Training
         
MySQL Training Apple Training Hitachi - HDS Training Project Management PMI Training  
  Apple Course, Leopard Training, Xsan Training