Video description
An updated edition of this video title is available. Please go to Java SE 11 Developer (1Z0-819) Complete Video Course (Video Training): https://learning.oreilly.com/videos/java-se-11/9780137586875/
More than 18 hours of video training covering all the objectives in the Java SE 8 Programmer I.
Description
Learn everything needed to pass the new Java SE 8 Programmer exam. OCA, Java SE 8 Programmer I (1Z0-808) Complete Video Course is a comprehensive training course designed to help you master the Java SE 8 Programmer I exam. The course brings the Java SE 8 Programmer I exam topics to life through the use of real-world live instruction, whiteboard teaching, and demonstrations so these foundational Java programming topics are easy and fun to learn. Simon Roberts a leading Java instructor, trainer, book author, video trainer, and creator of the original Sun Certified Programmer, Developer, and Architect certifications for Sun Microsystems will walk you through each topic covered in the exam, so you have a full understanding of the material. He begins with an introduction to the Oracle Certification program and also discusses preparation and test-taking strategies, so you can begin your training confidently. Simon then dives into the exam topics, covering all objectives in the exam using a variety of video presentation styles, including live whiteboarding, code demonstrations, and dynamic KeyNote presentations.
About the Instructor
Simon Roberts started his computing career as a programmer in the early 1980s and built several of his own microprocessor-based computers. He moved to Sun Microsystems, Inc. in mid-1995 and almost immediately became the lead Java instructor in the U.K. In 1998, Simon moved to Colorado, where he still lives. While at Sun, he created the Sun Certified Programmer, Developer, and Architect certifications, and worked in teams on several other certifications and subsequent revisions to those exams. He wrote three books on Java, including two certification study guides, one covering the Programmer and Developer exams, and one on the Architect exam. He left Sun in 2004 and became an independent instructor, architect, and software engineer.
Skill Level
Beginner to Intermediate
Who Should Take This Course
The primary audience includes candidates for the Java SE 8 Programmer I Exam; however, anyone interested in building a basic competence in the Java programming language will benefit from using this course.
Course Requirements
The audience should have a basic knowledge of Java or another object-oriented programming language in the syntactic traditions of C/C++. For example, a candidate with a good knowledge of C# should benefit from this material, even if one does not have prior experience in Java.
About LiveLessons Videos
The LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home & Office Technologies, Business & Management, and more. View All LiveLessons http://www.informit.com/livelessons.
Table of contents
- Introduction
- Module 1 Before You Begin
- Lesson 1: Why would I take the Oracle Certified Associate Java Programmer Exam
- Lesson 2: The path to certification
- Lesson 3: Preparation strategies
- Lesson 4: Test Taking Strategies
- Module 2 Java Basics
- Lesson 1: Define the scope of variables
- Lesson 2: Define the structure of a Java class
- Lesson 3: Create executable Java applications with a main method; run a Java program from the command line; including console output
- Lesson 4: Import other Java packages to make them accessible in your code
- Lesson 5: Compare and contrast the features and components of Java such as: platform independence, object orientation, encapsulation, etc.
- Module 3 Working with Java Data Types
-
Lesson 1: Declare and initialize variables (including casting of primitive data types)
- Learning Objectives
- 1.1 Using the general form of simple declarations
- 1.2 Using the general form of initialized declarations
- 1.3 Understanding integer primitive types, literal forms
- 1.4 Understanding floating point primitive types, literal forms
- 1.5 Understanding logical and character primitive types, literal forms
- 1.6 Casting primitive types
- Lesson 2: Differentiate between object reference variables and primitive variables
- Lesson 3: Know how to read or write to object fields
- Lesson 4: Explain an Object's Lifecycle (creation, "dereference by reassignment" and garbage collection)
- Lesson 5: Develop code that uses wrapper classes such as Boolean, Double, and Integer
- Module 4 Using Operators and Decision Constructs
-
Lesson 1: Use Java operators; including parentheses to override operator precedence
- Learning Objectives
- 1.1 Using operators, operands, and expressions
- 1.2 Using arithmetic operators + - * / %
- 1.3 Using the plus operator with Strings
- 1.4 Promoting operands
- 1.5 Using increment and decrement operators
- 1.6 Using shift operators
- 1.7 Using comparison operators
- 1.8 Using logical operators
- 1.9 Using short-circuit operators
- 1.10 Using assignment operators
- 1.11 Understanding assignment compatibility
- 1.12 Understanding other elements of expressions
- 1.13 Using parentheses and operator precedence
- Lesson 2: Test equality between Strings and other objects using == and equals ()
- Lesson 3: Create if and if/else and ternary constructs
- Lesson 4: Use a switch statement
- Module 5 Creating and Using Arrays
-
Lesson 1: Declare, instantiate, initialize and use a one-dimensional array
- Learning Objectives
- 1.1 Understanding simple array declarations, and variables of array type
- 1.2 Instantiating an array, array length
- 1.3 Initalizing arrays by iteration, array indexes
- 1.4 Using a combined declaration and intialization of arrays
- 1.5 Using immediate array creation not in a declaration
- 1.6 Initializing arrays by copying
- Lesson 2: Declare, instantiate, initialize and use multi-dimensional array
- Module 6 Using Loop Constructs
- Lesson 1: Create and use while loops
-
Lesson 2: Create and use for loops including the enhanced for loop
- Learning Objectives
- 2.1 Understanding the simple use of the for loop
- 2.2 Understanding the initialization section of the for loop
- 2.3 Understanding the test section of the for loop
- 2.4 Understanding the increment section of the for loop
- 2.5 Omitting sections of a for loop
- 2.6 Code examples for basic for loops
- 2.7 Understanding the simple use of the enhanced for loop
- 2.8 Identifying the valid targets of the enhanced for loop
- 2.9 Using the enhanced for loop with generic collections
- 2.10 Code examples for enhanced for loops
- Lesson 3: Create and use do/while loops
- Lesson 4: Compare loop constructs
- Lesson 5: Use break and continue
- Module 7 Working with Methods and Encapsulation
- Lesson 1: Create methods with arguments and return values; including overloaded methods
- Lesson 2: Apply the static keyword to methods and fields
- Lesson 3: Create and overload constructors; including impact on default constructors
- Lesson 4: Apply access modifiers
- Lesson 5: Apply encapsulation principles to a class
- Lesson 6: Determine the effect upon object references and primitive values when they are passed into methods that change the values
- Module 8 Working with Inheritance
- Lesson 1: Describe inheritance and its benefits
- Lesson 2: Develop code that demonstrates the use of polymorphism
- Lesson 3: Determine when casting is necessary
-
Lesson 4: Use super and this to access objects and constructors
- Learning Objectives
- 4.1 Understanding "this" for accessing object features
- 4.2 Understanding "super" for accessing parent features
- 4.3 Understanding "this()" for accessing overloaded constructors
- 4.4 Understanding "super()" for accessing parent constructors
- 4.5 Understanding the underlying principles of "this" and "super" for invoking other constructors
- 4.6 Code examples
-
Lesson 5: Use abstract classes and interfaces
- Learning Objectives
- 5.1 Preventing instantiation
- 5.2 Marking behaviors abstract
- 5.3 Understanding the rules about abstract classes and methods
- 5.4 Understanding and defining interfaces
- 5.5 Implementing and using interfaces
- 5.6 Code example for interfaces
- 5.7 Understanding the rules about interfaces
- 5.8 Understanding static and default methods
- Module 9 Handling Exceptions
- Lesson 1: Differentiate among checked exceptions, RuntimeExceptions and Errors
- Lesson 2: Create a try-catch block and determine how exceptions alter normal program flow
- Lesson 3: Describe the advantages of Exception handling
- Lesson 4: Create and invoke a method that throws an exception
- Lesson 5: Recognize common exception classes (such as NullPointerException, ArithmeticException, ArrayIndexOutOfBoundsException, ClassCastException)
- Module 10 Working with Selected classes from the Java API
- Lesson 1: Manipulate data using the StringBuilder class and its methods
- Lesson 2: Creating and manipulating Strings
- Lesson 3: Create and manipulate calendar data using...
- Lesson 4: Declare and use an ArrayList of a given type
- Lesson 5: Write a simple Lambda expression that consumes a Lambda Predicate expression
- Summary
Product information
- Title: OCA Java SE 8 Programmer I (1Z0-808)
- Author(s):
- Release date: January 2016
- Publisher(s): Pearson IT Certification
- ISBN: 0134427203
You might also like
video
Learning Path: Oracle Certified Associate, Java SE 8 Programmer
This Learning Path includes Java Programming Basics and OCA Java SE 8 Programmer I (1Z0-808) Complete …
book
OCA / OCP Java SE 8 Programmer Practice Tests
Test your knowledge and prepare for the OCA/OCP exams OCA/OCP Java SE 8 Programmer Practice Tests …
book
Java Coding Problems
Develop your coding skills by exploring Java concepts and techniques such as Strings, Objects and Types, …
video
Java SE 17 Developer (1Z0-829)
21+ Hours of Video Instruction An intensive and guided video course to learn and practice while …