Oracle - OCP Java SE 8 Programmer

Varighet

Varighet:

Bare 4 dager

Metode

Metode:

klasserommet / på nett / Hybrid

Neste dato

Neste dato:

24/6/2024 (Mandag)

Overview

On this accelerated 4-day OCP Java SE 8 programming course, you'll develop your Java programming skills, focusing on the core language features and Application Programming Interfaces (API), object oriented development and the structure of Java applications.

This accelerated course offers a distraction free environment, allowing you to focus solely on learning. Your expert instructor will implement Firebrand's unique Lecture | Lab| Review technique, helping you to better understand and retain information.

You'll also learn:

  • Encapsulation, Polymorphism, and Abstraction
  • Interfaces, Lambda Expressions, Collections, and Generics
  • Inheritance, Interfaces, Exceptions, and Deployment
  • Date/Time API, I/O and File I/O (NIO.2), and Concurrency
  • Concurrency, Parallelism, the JDBC API, and Localisation

On this course, you will prepare for the Oracle Certified Associate Java SE 8 Programmer I (1Z0-809) exam, covered by your Certification Guarantee.

Save hundreds by combining both the OCA Java SE 8 Programmer and OCP Java SE 8 Programmer courses on the accelerated 7-day Oracle OCA and OCP Java SE 8 Programmer Certification course.

If you're a system administrator, project, web developer, program or technical manager looking to improve your programming skills, this course is ideal for you.

Her er 8 grunner til hvorfor du skal gjennomføre ditt OCP Java SE 8 Programmer hos Firebrand Training:

  1. Du blir utdannet og sertifisert på bare 4 dager. Hos oss får du din utdanning og sertifisering på rekordtid, en sertifisering du også gjennomfører der og da som en integrert del av den intensive, akselererte utdanningen.
  2. Alt er inkludert. Et engangsbeløp dekker alt kursmaterial, eksamen, kost og losji og tilbyr den mest kostnadseffektive måten å gjennomføre ditt OCP Java SE 8 Programmer kurs og sertifisering på. Og dette uten noen uannonserte ytterligere kostnader.
  3. Du klarer sertifiseringen første gangen eller kan gå kurset om igjen kostnadsfritt. Det er vår garanti. Vi er sikre på at du vil klare din OCP Java SE 8 Programmer sertifisering første gangen. Men skulle du mot formodning ikke gjøre det kan du innen et år komme tilbake og kun betale for eventuelle overnattinger og din eksamen. Alt annet er gratis.
  4. Du lærer deg mer.Tradisjonelle utdanningsdager varer fra kl. 09.00 til 16.00 med lange lunsj- og kaffepauser. Hos Firebrand Training får du minst 12 timers effektiv og fokusert kvalitetsutdanning hver dag sammen med din instruktør, uten private eller arbeidsrelaterte, forstyrrende momenter.
  5. Du lærer deg OCP Java SE 8 Programmer raskere. Vi kombinerer de tre innlæringsmetodene (Presentasjon |Øving| Diskusjon) slik at vi gjennomfører kurset på en måte som sikrer at du lærer deg raskere og lettere.
  6. Du er i sikre hender.Vi har utdannet og sertifisert 134.561 personer, vi er partner med alle de store navn i bransjen og vi har vunnet atskillige utmerkelser, bla. a. "Årets Learning Partner 2010, 2011, 2012, 2013 og 2015” fra Microsoft Danmark og med en vekst på 1430 % siden 2009 er vi årets Gazelle prisvinner på Sjælland, Danmark.
  7. Du lærer deg ikke bare teorien. Vi har videreutviklet OCP Java SE 8 Programmer kursen og tilbyr flere praktiske øvelser og sikrer på den måten, at du kan bruke dine ferdigheter for å løse daglige praktiske problemstillinger.
  8. Du lærer av de beste. Våre instruktører på OCP Java SE 8 Programmer er de beste i bransjen og tilbyr en helt unik blanding av kunnskap, praktisk erfaring og pasjon for å lære bort.

Curriculum

Oracle Certified Professional Java SE 8 Programmer II

Java Class Design

  • Implement encapsulation
  • Implement inheritance including visibility modifiers and composition
  • Implement polymorphism
  • Override hashCode, equals, and toString methods from Object class
  • Create and use singleton classes and immutable classes
  • Develop code that uses static keyword on initialise blocks, variables, methods, and classes

Advanced Java Class Design

  • Develop code that uses abstract classes and methods
  • Develop code that uses final keyword
  • Create inner classes including static inner class, local class, nested class, and anonymous inner class
  • Use enumerated types including methods, and constructors in an enum type
  • Develop code that declares, implements and/or extends interfaces and use the atOverride annotation.
  • Create and use Lambda expressions

Generics and Collections

  • Create and use a generic class
  • Create and use ArrayList, TreeSet, TreeMap, and ArrayDeque objects
  • Use java.util.Comparator and java.lang.Comparable interfaces
  • Collections Streams and Filters
  • Iterate using for each methods of Streams and List
  • Describe Stream interface and Stream pipeline
  • Filter a collection by using lambda expressions
  • Use method references with Streams

Lambda Built-in Functional Interfaces

  • Use the built-in interfaces included in the java.util.function package such as Predicate, Consumer, Function, and Supplier
  • Develop code that uses primitive versions of functional interfaces
  • Develop code that uses binary versions of functional interfaces
  • Develop code that uses the UnaryOperator interface

Java Stream API

  • Develop code to extract data from an object using peek() and map() methods including primitive versions of the map() method
  • Search for data by using search methods of the Stream classes including findFirst, findAny, anyMatch, allMatch, noneMatch
  • Develop code that uses the Optional class
  • Develop code that uses Stream data methods and calculation methods
  • Sort a collection using Stream API
  • Save results to a collection using the collect method and group/partition data using the Collectors class
  • Use flatMap() methods in the Stream API

Exceptions and Assertions

  • Use try-catch and throw statements
  • Use catch, multi-catch, and finally clauses
  • Use Autoclose resources with a try-with-resources statement
  • Create custom exceptions and Auto-closeable resources
  • Test invariants by using assertions

Java SE 8 Date/Time API

  • Create and manage date-based and time-based events including a combination of date and time into a single object using LocalDate, LocalTime, LocalDateTime, Instant, Period, and Duration
  • Work with dates and times across timesones and manage changes resulting from daylight savings including Format date and times values
  • Define and create and manage date-based and time-based events using Instant, Period, Duration, and TemporalUnit

Java I/O Fundamentals

  • Read and write data from the console
  • Use BufferedReader, BufferedWriter, File, FileReader, FileWriter, FileInputStream, FileOutputStream, ObjectOutputStream, ObjectInputStream, and PrintWriter in the java.iopackage.

Java File I/O (NIO.2)

  • Use Path interface to operate on file and directory paths
  • Use Files class to check, read, delete, copy, move, manage metadata of a file or directory
  • Use Stream API with NIO.2

Java Concurrency

  • Create worker threads using Runnable, Callable and use an ExecutorService to concurrently execute tasks
  • Identify potential threading problems among deadlock, starvation, livelock, and race conditions
  • Use synchronised keyword and java.util.concurrent.atomic package to control the order of thread execution
  • Use java.util.concurrent collections and classes including CyclicBarrier and CopyOnWriteArrayList
  • Use parallel Fork/Join Framework
  • Use parallel Streams including reduction, decomposition, merging processes, pipelines and performance.

Building Database Applications with JDBC

  • Describe the interfaces that make up the core of the JDBC API including the Driver, Connection, Statement, and ResultSet interfaces and their relationship to provider implementations
  • Identify the components required to connect to a database using the DriverManager class including the JDBC URL
  • Submit queries and read results from the database including creating statements, returning result sets, iterating through the results, and properly closing result sets, statements, and connections

Localisation

  • Read and set the locale by using the Locale object
  • Create and read a Properties file
  • Build a resource bundle for each locale and load a resource bundle in an application

Exam Track

You will prepare for the following exam at the training centre during this course:

Oracle Certified Professional Java SE 8 Programmer II (1Z0-809)

  • Duration: 150 minutes
  • Number of Questions: 85
  • Passing Score: 65%
  • Format: Multiple Choice

Before taking any exam, ensure you have the recommended experience. The Oracle website lists all exam requirements and these are updated regularly.

Please note that it is not possible to sit Oracle exams onsite. As part of this course, delegates receive an exam voucher to take exams remotely.

What's Included

Prerequisites

Before you attend this course, you should:

  • Understand the command-line interface.
  • Have used a text editor and a browser.

To achieve the OCP Java SE 8 programming certification, you'll first need to pass the Oracle Certified Associate, Java SE 8 Programmer certification.

Anmeldelser

Vi har lært opp 134.561 personer på 12 år. Vi ba dem om å anmelde vår akselererte opplæring. Akkurat nå har 96,41% angitt at Firebrand overgikk forventningene:

"As a novice I have learnt a lot and found out a lot of interesting tips that I can now build on and use to achieve more qualifications."
Selina Flowers, NG. (27/11/2018 (Tirsdag) til 30/11/2018 (Fredag))

"As a novice I have learnt a lot and found out a lot of interesting tips that I can now build on and use to achieve more qualifications."
Selina Flowers, NG. (27/11/2018 (Tirsdag) til 30/11/2018 (Fredag))

"Tutor is extremely knowledgeable, helpful and kind. Although I attended online he made sure to keep me involved."
FM. (25/9/2023 (Mandag) til 27/9/2023 (Onsdag))

"I had a very positive experience. Excellent trainer and very knowledgable. There was a lot of information to take on board and the mock exam was difficult which was what I expected. Overall a really good experience."
Gavin Clark, Lloyds. (25/9/2023 (Mandag) til 27/9/2023 (Onsdag))

"Course was well put together by our tutor"
Anonymous. (18/9/2023 (Mandag) til 20/9/2023 (Onsdag))

Kursdatoer

Start

Slutt

Kapasitet

Plass

Registrer deg

19/2/2024 (Mandag)

22/2/2024 (Torsdag)

Ferdig - Gi tilbakemelding

-

 

24/6/2024 (Mandag)

27/6/2024 (Torsdag)

Venteliste

Landsdekkende

 

5/8/2024 (Mandag)

8/8/2024 (Torsdag)

Begrenset kapasitet

Landsdekkende

 

16/9/2024 (Mandag)

19/9/2024 (Torsdag)

Ledige plasser

Landsdekkende

 

28/10/2024 (Mandag)

31/10/2024 (Torsdag)

Ledige plasser

Landsdekkende

 

9/12/2024 (Mandag)

12/12/2024 (Torsdag)

Ledige plasser

Landsdekkende

 

Siste anmeldelser fra studenten vår