Ocjp 8 11 17 21

30 Hours extreme Work out

Details Debugging Explantions

Expert instructors

24/7 Full Support By Whatspp.

Life time access

All time avaible links and shared videos.

What Will You Learn?...In Details

Ocjp

Day 1 - Ocjp 11 - 1 Basics of Java Programming 1

Java Programming Book Outline

Chapter 1: The Java Ecosystem

  • 1.1 The Java Ecosystem
  • 1.2 Classes
  • 1.3 Objects
  • 1.4 Instance Members
  • 1.5 Static Members
  • 1.6 Inheritance
  • 1.7 Aggregation
  • Review Questions
  • 1.8 Sample Java Program
  • 1.9 Program Output
  • Review Questions

Chapter 2: Basic Elements, Primitive Data Types, and Operators

  • 2.1 Basic Language Elements
  • 2.2 Primitive Data Types
  • 2.3 Conversions
  • 2.4 Type Conversion Contexts
  • 2.5 Precedence and Associativity Rules for Operators
  • 2.6 Evaluation Order of Operands
  • 2.7 The Simple Assignment Operator =
  • 2.8 Arithmetic Operators: *, /, %, +, -
  • 2.9 The Binary String Concatenation Operator +
  • 2.10 Variable Increment and Decrement Operators: ++, --
  • Review Questions
  • 2.11 Boolean Expressions
  • 2.12 Relational Operators: <, <=, >, >=
  • 2.13 Equality
  • 2.14 Boolean Logical Operators: !, ^, &, |
  • 2.15 Conditional Operators: &&, ||
  • 2.16 Integer Bitwise Operators: ~, &, |, ^
  • 2.17 Shift Operators: <<, >>, >>>
  • 2.18 The Conditional Operator ?:
  • 2.19 Other Operators: new, [], instanceof, ->
  • Review Questions

Chapter 3: Declarations

  • 3.1 Class Declarations
  • 3.2 Method Declarations
  • 3.3 Statements
  • 3.4 Variable Declarations
  • 3.5 Instance Methods and the Object Reference this
  • 3.6 Method Overloading
  • 3.7 Constructors
  • 3.8 Static Member Declarations
  • Review Questions
  • 3.9 Arrays
  • 3.10 Parameter Passing
  • 3.11 Variable Arity Methods
  • 3.12 The main() Method
  • 3.13 Local Variable Type Inference
  • Review Questions
...

Chapter 4: Control Flow

  • 4.1 Selection Statements
  • 4.2 The switch Statement
  • 4.3 The switch Expression
  • Review Questions
  • 4.4 Iteration Statements
  • 4.5 The while Statement
  • 4.6 The do-while Statement
  • 4.7 The for(;;) Statement
  • 4.8 The for(:) Statement
  • 4.9 Transfer Statements
  • 4.10 Labeled Statements
  • 4.11 The break Statement
  • 4.12 The continue Statement
  • 4.13 The return Statement
  • Review Questions

Chapter 5: Object-Oriented Programming

  • 5.1 Implementing Inheritance
  • 5.2 The Object Reference super
  • 5.3 Chaining Constructors Using this() and super()
  • Review Questions
  • 5.4 Abstract Classes and Methods
  • 5.5 Final Declarations
  • Review Questions
  • 5.6 Interfaces
  • Review Questions
  • 5.7 Arrays and Subtyping
  • 5.8 Reference Values and Conversions
  • 5.9 Reference Value Assignment Conversions
  • 5.10 Method Invocation Conversions Involving References
  • 5.11 Reference Casting and the instanceof Operator
  • 5.12 Polymorphism
  • Review Questions
  • 5.13 Enum Types
  • 5.14 Record Classes
  • 5.15 Sealed Classes and Interfaces
  • Review Questions

Chapter 6: Access Control

  • 6.1 Design Principle: Encapsulation
  • 6.2 Java Source File Structure
  • 6.3 Packages
  • 6.4 Searching for Classes on the Class Path
  • Review Questions
  • 6.5 Access Modifiers
  • 6.6 Scope Rules
  • 6.7 Implementing Immutability
  • Review Questions

Chapter 7: Exception Handling

  • 7.1 Stack-Based Execution and Exception Propagation
  • 7.2 Exception Types
  • 7.3 Exception Handling: try, catch, and finally
  • 7.4 The throw Statement
  • 7.5 The throws Clause
  • Review Questions
  • 7.6 The Multi-catch Clause
  • 7.7 The try-with-resources Statement
  • 7.8 Advantages of Exception Handling
  • Review Questions

Chapter 8: Selected API Classes

  • 8.1 Overview of the java.lang Package
  • 8.2 The Object Class
  • 8.3 The Wrapper Classes
  • Review Questions

Chapter 9: Nested Type Declarations

  • 9.1 Overview of Nested Type Declarations
  • 9.2 Static Member Types
  • 9.3 Non-Static Member Classes
  • Review Questions
  • 9.4 Local Classes
  • 9.5 Static Local Types
  • 9.6 Anonymous Classes
  • Review Questions

Chapter 10: Object Lifetime

  • 10.1 Garbage Collection
  • 10.2 Reachable Objects
  • 10.3 Facilitating Garbage Collection
  • 10.4 Invoking Garbage Collection Programmatically
  • Review Questions
  • 10.5 Initializers
  • 10.6 Field Initializer Expressions
  • 10.7 Static Initializer Blocks
  • 10.8 Instance Initializer Blocks
  • 10.9 Constructing Initial Object State
  • Review Questions

Chapter 11: Generics

  • 11.1 Introducing Generics
  • 11.2 Generic Types and Parameterized Types
  • 11.3 Collections and Generics
  • 11.4 Wildcards
  • 11.5 Using References of Wildcard Parameterized Types
  • 11.6 Bounded Type Parameters
  • 11.7 Generic Methods and Constructors
  • 11.8 Implementing a Simplified Generic Stack
  • Review Questions
  • 11.9 Wildcard Capture
  • 11.10 Flexibility with Wildcard Parameterized Types
  • 11.11 Type Erasure
  • 11.12 Implications for Overloading and Overriding
  • 11.13 Limitations and Restrictions on Generic Types
  • Review Questions

Chapter 12: Collections, Part I: ArrayList<E>

  • 12.1 Lists
  • 12.2 Declaring References and Constructing ArrayLists
  • 12.3 Modifying an ArrayList<E>
  • 12.4 Querying an ArrayList<E>
  • 12.5 Iterating Over an ArrayList<E>
  • 12.6 Converting an ArrayList<E> to an Array
  • 12.7 Creating List Views
  • 12.8 Arrays versus ArrayLists
  • Review Questions

Chapter 13: Functional-Style Programming

  • 13.1 Functional Interfaces
  • 13.2 Lambda Expressions
  • 13.3 Lambda Expressions and Anonymous Classes
  • Review Questions
  • 13.4 Overview of Built-In Functional Interfaces
  • 13.5 Suppliers
  • 13.6 Predicates
  • 13.7 Consumers
  • 13.8 Functions
  • 13.9 Two-Arity Specialization of Function<T, R>: BiFunction<T, U, R>
  • 13.10 Extending Function<T,T>: UnaryOperator<T>
  • 13.11 Extending BiFunction<T,T,T>: BinaryOperator<T>
  • 13.12 Currying Functions
  • 13.13 Method and Constructor References
  • 13.14 Contexts for Defining Lambda Expressions
  • Review Questions

Chapter 14: Object Comparison

  • 14.1 The Objects Class
  • 14.2 Implementing the equals() Method
  • 14.3 Implementing the hashCode() Method
  • 14.4 Implementing the java.lang.Comparable<E> Interface
  • 14.5 Implementing the java.util.Comparator<

Chapter 15: Collections: Part II

  • 15.1 The Java Collections Framework
  • 15.2 Collections
  • 15.3 Lists
  • 15.4 Sets
  • 15.5 Sorted Sets and Navigable Sets
  • 15.6 Queues
  • 15.7 Deques
  • Review Questions
  • 15.8 Maps
  • 15.9 Map Implementations
  • 15.10 Sorted Maps and Navigable Maps
  • Review Questions
  • 15.11 The Collections Class
  • 15.12 The Arrays Class
  • Review Questions

Chapter 16: Streams

  • 16.1 Introduction to Streams
  • 16.2 Running Example: The CD Record Class
  • 16.3 Stream Basics
  • 16.4 Building Streams
  • 16.5 Intermediate Stream Operations
  • 16.6 The Optional Class
  • 16.7 Terminal Stream Operations
  • 16.8 Collectors
  • 16.9 Parallel Streams
  • Review Questions

Chapter 17: Date and Time

  • 17.1 Date and Time API Overview
  • 17.2 Working with Dates and Times
  • 17.3 Using Temporal Units and Temporal Fields
  • 17.4 Working with Instants
  • 17.5 Working with Periods
  • 17.6 Working with Durations
  • 17.7 Working with Time Zones and Daylight Savings
  • 17.8 Converting Date and Time Values to Legacy Date
  • Review Questions

Chapter 18: Localization

  • 18.1 Using Locales
  • 18.2 Properties Files
  • 18.3 Bundling Resources
  • Review Questions
  • 18.4 Core API for Formatting and Parsing of Values
  • 18.5 Formatting and Parsing Number, Currency, and Percentage Values
  • 18.6 Formatting and Parsing Date and Time
  • 18.7 Formatting and Parsing Messages
  • Review Questions

Chapter 19: Java Module System

  • 19.1 Making the Case for Modules
  • 19.2 The Modular JDK
  • 19.3 Module Basics
  • 19.4 Overview of Module Directives
  • 19.5 Creating a Modular Application
  • 19.6 Compiling and Running a Modular Application
  • 19.7 Creating JAR Files
  • 19.8 Open Modules and the opens Directive
  • 19.9 Services
  • 19.10 Creating Runtime Images
  • 19.11 Categories of Modules
  • 19.12 Migrating to Modules
  • 19.13 Exploring Modules
  • 19.14 Summary of Selected Operations with the JDK Tools
  • Review Questions

Chapter 20: Java I/O: Part I

  • 20.1 Input and Output
  • 20.2 Byte Streams: Input Streams and Output Streams
  • 20.3 Character Streams: Readers and Writers
  • 20.4 The Console Class
  • Review Questions
  • 20.5 Object Serialization
  • Review Questions

Learner outcomes on courses you will take

Techniques to engage effectively with vulnerable children and young people.

Join millions of people from around the world learning together.

Join millions of people from around the world learning together. Online learning is as easy and natural.

Industrial Software Technology experts

Akhilesh kumar Soni

Senior Java Consultant - Experience 22 years.