Home > Store

Register your product to gain access to bonus material or receive a coupon.

Java SE 11 Developer (1Z0-819) Complete Video Course (Video Training)

Online Video

Description

  • Copyright 2022
  • Edition: 1st
  • Online Video
  • ISBN-10: 0-13-758680-9
  • ISBN-13: 978-0-13-758680-6

18+ Hours of Video Instruction

An intensive study resource designed to guide you in best practices for exam success on the Java SE 11 Developer (1Z0-819) exam.

Overview:

The Oracle Certified Professional: Java SE 11 Developer exam is the industry standard certification for Java programming skills. Java SE 11 Developer (1Z0-819) Complete Video Course is designed to make you successful in your Java certification exam journey. This 18+ hour video course focuses on exam key concepts and helps you hone your Java programming skills so you are not only prepared to take the exam, but you can become a better Java programmer.

This study resource is fast-paced and focuses on elucidating both key concepts and difficult and unfamiliar topics. Each lesson is reinforced with clear instructions and focused discussions to help ensure a full understanding of the material, maximizing the potential of passing the exam.

At the end of each lesson is a "Question Deep Dive" section that is modelled after the real exam format so you can familiarize yourself with how questions might appear on the exam, as well as gain confidence before you take the test.

Skill Level:

  • Intermediate to Advanced


Learn How To:
  • Work with Java date types
  • Control Program flow and exception handling
  • Understand Java object-oriented approach
  • Work with Java arrays and collections
  • Work with streams and lambda expressions
  • Understand Java platform module system
  • Create and manage concurrency
  • Work with java.nio.file API
  • Explore annotations, localization, and secure coding in Java SE application


Who Should Take This Course:
  • Anyone preparing for the Java Certification exam
  • Anyone wishing to take their Java education to the next level


Course Requirements:
  • You have been learning Java and can build working examples using most of Java's key features.
  • You are building your familiarity with Java 11 and want to take that to a more rigorous level.
  • You have at least a few months working with Java.
  • The exam's objectives are very broad, and the coverage is quite deep in places. You should feel ready to embark on a learning journey that goes into this depth. Your enthusiasm and drive to succeed are the most important requirements for this course.

About Pearson Video Training:

Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Sams, and Que Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at http://www.informit.com/video.

Video Lessons are available for download for offline viewing within the streaming format. Look for the green arrow in each lesson.

Sample Content

Table of Contents

Introduction

Module 1: Working with Java data types
Lesson 1: Use primitives and wrapper classes, including, operators, parentheses, type promotion and casting
Learning objectives
1.1 Java operators - part 1
1.2 Java operators - part 2
1.3 Promotions
1.4 Casting
1.5 Wrapper classes
1.6 Question deep dive
Lesson 2: Handle text using String and StringBuilder classes
Learning objectives
2.1 String and StringBuilder
2.2 Methods of the String class 
2.3 Methods of the StringBuilder class
2.4 Question deep dive
Lesson 3: Use local variable type inference, including as lambda parameters
Learning objectives
3.1 Using var for regular variables
3.2 Additional uses and restrictions of var
3.3 Question deep dive

Module 2: Controlling Program Flow and Exception Handling
Lesson 4: Create and use loops, if/else, and switch statements
Learning objectives
4.1 Simple loops
4.2 Control using break and continue
4.3 Using if/else statements
4.4 Using switch statements
4.5 Question deep dive
Lesson 5: Handle exceptions using try/catch/finally clauses, try-with-resource, and multi-catch statements
Learning objectives
5.1 Flow control of try/catch/finally
5.2 Flow control of try-with-resources
5.3 Multi-catch and rethrowing
5.4 Question deep dive
Lesson 6: Create and use custom exceptions
Learning objectives
6.1 Subclassing Throwable types
6.2 Question deep Dive

Module 3: Java Object-Oriented Approach
Lesson 7: Declare and instantiate Java objects including nested class objects, and explain objects' lifecycles (including creation, dereferencing by reassignment, and garbage collection)
Learning objectives
7.1 Source files and basic type declarations
7.2 Nested type declarations
7.3 Inner class declarations - part 1
7.4 Inner class declaration - part 2
7.5 Local and anonymous class declarations
7.6 Reachability analysis
7.7 Question deep dive
Lesson 8: Define and use fields and methods, including instance, static and overloaded methods
Learning objectives
8.1 Instance and static fields - part 1
8.2 Instance and static fields - part 2
8.3 Instance and static methods - part 1
8.4 Instance and static methods - part 2
8.5 Variable length argument handling
8.6 Overloaded and overridden methods - part 1
8.7 Overloaded and overridden methods - part 2
8.8 Question deep dive
Lesson 9: Initialize objects and their members using instance and static initializer statements and constructors
Learning objectives
9.1 Static initialization
9.2 Instance initialization
9.3 Question deep dive
Lesson 10: Understand variable scopes, apply encapsulation and make objects immutable
Learning objectives
10.1 Rules of scope
10.2 Access control modifiers
10.3 Encapsulation requirements
10.4 Immutability requirements
10.5 Question deep dive
Lesson 11: Create and use subclasses and superclasses, including abstract classes
Learning objectives
11.1 Subclass declaration
11.2 Subclass initialization
11.3 Abstract class constraints
11.4 Question deep dive
Lesson 12: Utilize polymorphism and casting to call methods, differentiate object type versus reference type
Learning objectives
12.1 Object and reference type
12.2 Possible and impossible casts
12.3 Virtual method invocation
12.4 Covariant returns
12.5 Question deep dive
Lesson 13: Create and use interfaces, identify functional interfaces, and utilize private, static, and default methods
Learning objectives
13.1 Interfaces, methods and functional interfaces
13.2 Interface implementation
13.3 Default method resolution
13.4 Question deep dive
Lesson 14: Create and use enumerations
Learning objectives
14.1 Enum values and initialization
14.2 Enum fields and methods
14.3 Question deep dive

Module 4: Working with Arrays and Collections
Lesson 15: Use generics, including wildcards
Learning objectives
15.1 Reviewing fundamentals of generics
15.2 Declaring generic types and methods
15.3 Using bounds and wildcards
15.4 Question deep dive
Lesson 16: Use a Java array and List, Set, Map and Deque collections, including convenience methods
Learning objectives
16.1 Arrays, and methods of Collection, List, and Set - part 1
16.2 Arrays, and methods of Collection, List, and Set - part 2
16.3 Methods of Deque and Map
16.4 Question deep dive
Lesson 17: Sort collections and arrays using Comparator and Comparable interfaces
Learning objectives
17.1 Comparison methods and interfaces
17.2 Sorting arrays and Collections
17.3 Comparator factories and decorators
17.4 Question deep dive

Module 5: Working with Streams and Lambda Expressions
Lesson 18: Implement functional interfaces using lambda expressions, including interfaces from the java.util.function package
Learning objectives
18.1 Lambda expression syntax variations
18.2 Lambda expression contexts
18.3 Core functional interfaces
18.4 Method references
18.5 Question deep dive
Lesson 19: Use Java Streams to filter, transform and process data
Learning objectives
19.1 The monad-like methods
19.2 Stream utilities
19.3 Simple terminal methods and laziness
19.4 Question deep dive
Lesson 20: Perform decomposition and reduction, including grouping and partitioning on sequential and parallel streams
Learning objectives
20.1 Collection and reduction - part 1
20.2 Collection and reduction - part 2
20.3 Grouping and partitioning with Collectors
20.4 Downstream operations with Collectors
20.5 Parallel stream operation
20.6 Question deep dive

Module 6: Java Platform Module System
Lesson 21: Deploy and execute modular applications, including automatic modules
Learning objectives
21.1 Module compilation
21.2 Module execution
21.3 Question Deep Dive
Lesson 22: Declare, use, and expose modules, including the use of services
Learning objectives
22.1 Exports and requires directives
22.2 Provides, uses, open and opens directives
22.3 Question Deep Dive

Module 7: Concurrency
Lesson 23: Create worker threads and manage concurrency
Learning objectives
23.1 Runnable and Thread
23.2 ExecutorService and Future
23.3 ExecutorService lifecycle - part 1
23.4 ExecutorService lifecycle - part 2
23.5 Question Deep Dive
Lesson 24: Develop thread-safe code, using different locking mechanisms and java.util.concurrent API
Learning objectives
24.1 Race conditions, deadlock, and livelock
24.2 Transactional integrity
24.3 Visibility
24.4 Concurrent queues and collections
24.5 Synchronizers, locks, and atomic types - part 1
24.6 Synchronizers, locks, and atomic types - part 2
24.7 Question Deep Dive

Module 8: Database Applications with JDBC, and Java IO
Lesson 25: Connect to and perform database SQL operations, process query results using JDBC API
Learning objectives
25.1 JDBC URLs, DriverManager, DataSource, and Connection
25.2 Statement and ResultSet
25.3 PreparedStatement
25.4 Question deep dive
Lesson 26: Read and write console and file data using I/O Streams
Learning objectives
26.1 Input and Output streams, Reader and Writer
26.2 BufferedReader, PrintWriter, Scanner and Charset conversions
26.3 Question Deep Dive
Lesson 27: Implement serialization and deserialization techniques on Java objects
Learning objectives
27.1 Default serialization
27.2 Customizing serialization
27.3 Question Deep Dive
Lesson 28: Handle file system objects using java.nio.file API
Learning objectives
28.1 Files methods - part 1
28.2 Files methods - part 2
28.3 Working with Channels
28.4 Question Deep Dive

Module 9: Annotations, Localization, and Secure Coding in Java SE Application
Lesson 29: Create, Apply, and Process Annotations
Learning objectives
29.1 Annotation declaration and elements
29.2 Target, retention, and inspection
29.3 Element types and repeatable annotations
29.4 Question deep dive
Lesson 30: Implement Localization and use Java APIs for parsing and formatting
Learning objectives
30.1 Parsing, formatting, and locale
30.2 Resourcebundles and data lookup
30.3 Question Deep Dive
Lesson 31: Develop code that mitigates security threats, and ensure data integrity 
Learning objectives
31.1 Understanding key threats and mitigations
31.2 Question Deep Dive
Lesson 32: Secure resource access, manage policies and execute privileged code
Learning objectives
32.1 Understanding permissions and access control
32.2 Question Deep Dive
Summary

Updates

Submit Errata

More Information

vceplus-200-125    | boson-200-125    | training-cissp    | actualtests-cissp    | techexams-cissp    | gratisexams-300-075    | pearsonitcertification-210-260    | examsboost-210-260    | examsforall-210-260    | dumps4free-210-260    | reddit-210-260    | cisexams-352-001    | itexamfox-352-001    | passguaranteed-352-001    | passeasily-352-001    | freeccnastudyguide-200-120    | gocertify-200-120    | passcerty-200-120    | certifyguide-70-980    | dumpscollection-70-980    | examcollection-70-534    | cbtnuggets-210-065    | examfiles-400-051    | passitdump-400-051    | pearsonitcertification-70-462    | anderseide-70-347    | thomas-70-533    | research-1V0-605    | topix-102-400    | certdepot-EX200    | pearsonit-640-916    | itproguru-70-533    | reddit-100-105    | channel9-70-346    | anderseide-70-346    | theiia-IIA-CIA-PART3    | certificationHP-hp0-s41    | pearsonitcertification-640-916    | anderMicrosoft-70-534    | cathMicrosoft-70-462    | examcollection-cca-500    | techexams-gcih    | mslearn-70-346    | measureup-70-486    | pass4sure-hp0-s41    | iiba-640-916    | itsecurity-sscp    | cbtnuggets-300-320    | blogged-70-486    | pass4sure-IIA-CIA-PART1    | cbtnuggets-100-101    | developerhandbook-70-486    | lpicisco-101    | mylearn-1V0-605    | tomsitpro-cism    | gnosis-101    | channel9Mic-70-534    | ipass-IIA-CIA-PART1    | forcerts-70-417    | tests-sy0-401    | ipasstheciaexam-IIA-CIA-PART3    | mostcisco-300-135    | buildazure-70-533    | cloudera-cca-500    | pdf4cert-2v0-621    | f5cisco-101    | gocertify-1z0-062    | quora-640-916    | micrcosoft-70-480    | brain2pass-70-417    | examcompass-sy0-401    | global-EX200    | iassc-ICGB    | vceplus-300-115    | quizlet-810-403    | cbtnuggets-70-697    | educationOracle-1Z0-434    | channel9-70-534    | officialcerts-400-051    | examsboost-IIA-CIA-PART1    | networktut-300-135    | teststarter-300-206    | pluralsight-70-486    | coding-70-486    | freeccna-100-101    | digitaltut-300-101    | iiba-CBAP    | virtuallymikebrown-640-916    | isaca-cism    | whizlabs-pmp    | techexams-70-980    | ciscopress-300-115    | techtarget-cism    | pearsonitcertification-300-070    | testking-2v0-621    | isacaNew-cism    | simplilearn-pmi-rmp    | simplilearn-pmp    | educationOracle-1z0-809    | education-1z0-809    | teachertube-1Z0-434    | villanovau-CBAP    | quora-300-206    | certifyguide-300-208    | cbtnuggets-100-105    | flydumps-70-417    | gratisexams-1V0-605    | ituonline-1z0-062    | techexams-cas-002    | simplilearn-70-534    | pluralsight-70-697    | theiia-IIA-CIA-PART1    | itexamtips-400-051    | pearsonitcertification-EX200    | pluralsight-70-480    | learn-hp0-s42    | giac-gpen    | mindhub-102-400    | coursesmsu-CBAP    | examsforall-2v0-621    | developerhandbook-70-487    | root-EX200    | coderanch-1z0-809    | getfreedumps-1z0-062    | comptia-cas-002    | quora-1z0-809    | boson-300-135    | killtest-2v0-621    | learncia-IIA-CIA-PART3    | computer-gcih    | universitycloudera-cca-500    | itexamrun-70-410    | certificationHPv2-hp0-s41    | certskills-100-105    | skipitnow-70-417    | gocertify-sy0-401    | prep4sure-70-417    | simplilearn-cisa    |
http://www.pmsas.pr.gov.br/wp-content/    | http://www.pmsas.pr.gov.br/wp-content/    |