Introduction to Java 11

(Java-11.AB1) / ISBN : 978-1-64459-209-0
This course includes
Lessons
TestPrep
Hands-On Labs
296 Review
Get A Free Trial

About This Course

This ‘Introduction to Java 11’ training course equips you with the fundamentals of this popular coding language with new and enhanced features for greater security, performance and functionality. You’ll be learning about variables and loops, along with exciting new features like HTTP Client API for building web apps. Whether you’re a complete beginner or you have some basic coding knowledge, this Java programming language course is designed to build your skills step-by-step, ensuring you develop a robust understanding of Java. Additionally, this upgraded java programming certificate course comes with loads of hands-on exercises that add to your fluency and speed.

Skills You’ll Get

  • Develop an understanding of Java fundamentals
  • Ability to use building blocks like variables, data types, loops, and conditionals
  • Learn the fundamentals of Object-Oriented Programming (OOP)
  • Work with classes, objects, inheritance, and polymorphism
  • Get familiar with latest Java features like HTTP Client API for building web apps
  • Using local-variable type interface for writing cleaner codes
  • Learn the best-in-class practices for Java coding

Interactive Lessons

26+ Interactive Lessons | 155+ Quizzes | 451+ Flashcards | 451+ Glossary of terms

Gamified TestPrep

56+ Pre Assessment Questions | 56+ Post Assessment Questions |

Hands-On Labs

58+ LiveLab | 00+ Minutes

1

Introduction

  • How This Course Is Organized?
  • Who Should Read This Course?
  • Conventions Used in This Course
2

Getting Started with Java

  • The Java Language
  • Object-Oriented Programming
  • Objects and Classes
  • Attributes and Behavior
  • Organizing Classes and Class Behavior
  • Summary
3

The ABCs of Programming

  • Statements and Expressions
  • Variables and Data Types
  • Comments
  • Literals
  • Expressions and Operators
  • String Arithmetic
  • Summary
4

Working with Objects

  • Creating New Objects
  • Using Class and Instance Variables
  • Calling Methods
  • References to Objects
  • Casting Objects and Primitive Types
  • Comparing Object Values and Classes
  • Summary
5

Lists, Logic, and Loops

  • Arrays
  • Block Statements
  • if Conditionals
  • Switch Conditionals
  • The Ternary Operator
  • for Loops
  • while and do Loops
  • Breaking Out of Loops
  • Summary
6

Creating Classes and Methods

  • Defining Classes
  • Creating Instance and Class Variables
  • Creating Methods
  • Creating Java Applications
  • Java Applications and Arguments
  • Creating Methods with the Same Name
  • Constructors
  • Overriding Methods
  • Summary
7

Packages, Interfaces, and Other Class Features

  • Modifiers
  • Static Variables and Methods
  • Final Classes, Methods, and Variables
  • Abstract Classes and Methods
  • Packages
  • Creating Your Own Packages
  • Interfaces
  • Creating and Extending Interfaces
  • Summary
8

Exceptions and Threads

  • Exceptions
  • Managing Exceptions
  • Declaring Methods That Might Throw Exceptions
  • Creating and Throwing Exceptions
  • When Not to Use Exceptions
  • Threads
  • Summary
9

Data Structures

  • Moving Beyond Arrays
  • Java Structures
  • Generics
  • Enumerations
  • Summary
10

Creating a Graphical User Interface

  • Creating an Application
  • Working with Components
  • Lists
  • The Java Class Library
  • Summary
11

Building an Interface

  • Swing Features
  • Summary
12

Arranging Components on a User Interface

  • Basic Interface Layout
  • Mixing Layout Managers
  • Card Layout
  • Summary
13

Responding to User Input

  • Event Listeners
  • Working with Methods
  • Summary
14

Creating Java2D Graphics

  • The Graphics2D Class
  • Drawing Text
  • Color
  • Drawing Lines and Polygons
  • Summary
15

Developing Swing Applications

  • Improving Performance with SwingWorker
  • Grid Bag Layout
  • Summary
16

Using Inner Classes and Lambda Expressions

  • Inner Classes
  • Lambda Expressions
  • Variable Type Inference
  • Summary
17

Working with Input and Output

  • Introduction to Streams
  • Byte Streams
  • Filtering a Stream
  • Character Streams
  • Files and Paths
  • Summary
18

Communicating Over HTTP

  • Networking in Java
  • The java.nio Package
  • Summary
19

Accessing Databases with JDBC and Derby

  • Java Database Connectivity
  • Summary
20

Reading and Writing RSS Feeds

  • Using XML
  • Designing an XML Dialect
  • Processing XML with Java
  • Processing XML with XOM
  • Summary
21

Making Web Service Requests

  • Introduction to XML-RPC
  • Communicating with XML-RPC
  • Choosing an XML-RPC Implementation
  • Using an XML-RPC Web Service
  • Creating an XML-RPC Web Service
  • Summary
22

Writing a Game with Java

  • Playing a Game
  • Summary
A

Appendix A: Using the NetBeans Integrated Development Environment

  • Installing NetBeans
  • Creating a New Project
  • Creating a New Java Class
  • Running the Application
  • Fixing Errors
  • Expanding and Shrinking a Pane
  • Exploring NetBeans
B

Appendix B: Fixing Package Not Visible Errors in NetBeans

  • Adding Module Info
C

Appendix C: Using the Java Development Kit

  • Choosing a Java Development Tool
  • Configuring the Java Development Kit
  • Using a Text Editor
  • Creating a Sample Program
D

Appendix D: Programming with the Java Development Kit

  • Overview of the JDK
  • java, the Java Virtual Machine
  • The javac Compiler
  • The javadoc Documentation Tool
  • The jar Java File Archival Tool
  • The jdb Debugger
  • Using System Properties
  • Writing Java Statements in a Shell

3

The ABCs of Programming

  • Using a Variable
  • Using Multiple Variables
  • Creating a Local Variable
  • Using Comments
  • Using the Modulus Operator
  • Using the Logical AND Operator
  • Using the Logical OR Operator
  • Using the instanceOf Operator
  • Using Relational Operators
  • Concatenating Two Strings
4

Working with Objects

  • Creating an Object
  • Creating a Class Variable
  • Creating a Reference to the Object
  • Using Java Primitives 
  • Converting a Primitive Type to Object
5

Lists, Logic, and Loops

  • Declaring a Multidimensional Array
  • Declaring an Array
  • Using the if Statement
  • Using the if-else Statement
  • Using the switch Statement
  • Using the Ternary Operator
  • Using the for Statement
  • Using the while Loop
  • Using the do/while Loop
  • Using the break Statement
6

Creating Classes and Methods

  • Using the this Keyword
  • Creating a Method
  • Creating the main() Method
  • Passing Parameters to a Method
  • Creating a Constructor
  • Overloading a Method
  • Using Method Overriding
7

Packages, Interfaces, and Other Class Features

  • Using the Access Modifier
  • Using the Static Method
  • Using Static Variables
  • Importing a Package
  • Using the Abstract Method
  • Creating an Interface
8

Exceptions and Threads

  • Using the try/catch Block
  • Using the finally Block
  • Using the throws Keyword
9

Data Structures

  • Creating an Enumeration
10

Creating a Graphical User Interface

  • Creating a Form
11

Building an Interface

  • Creating a Signup Form
  • Creating a Textbox and a Progress Bar
12

Arranging Components on a User Interface

  • Creating a Calendar
13

Responding to User Input

  • Creating a Calculator
14

Creating Java2D Graphics

  • Drawing a Rectangle and Adding Color to it
15

Developing Swing Applications

  • Creating a Graphical User Interface
16

Using Inner Classes and Lambda Expressions

  • Using the Static Inner Class
  • Using a Lambda Expression
17

Working with Input and Output

  • Writing Values in a File
  • Reading the Content of a File
19

Accessing Databases with JDBC and Derby

  • Working with JDBC Statements
  • Executing a SQL Query
  • Displaying Records
  • Reading the Content of a Webpage
20

Reading and Writing RSS Feeds

  • Creating an XML Document

Any questions?
Check out the FAQs

Still have unanswered questions and need to get in touch?

Contact Us Now

There are no formal prerequisites for this course. However you should possess good analytical and problem solving skills along with some basic knowledge of coding.

Java 11 programming equips yourself with:

  • Increased chances of employability: Java 11 is the latest version of programming that’s needed by most employers.
  • Build modern apps: master the new features for building modern web applications and efficient softwares.
  • Upgrade your programming skills: learn best practices and leverage features like local variables for writing cleaner codes.
  • Learn problem solving: coding is all about solving problems, you develop a structured approach to solving complex challenges.

Average salary is around $1,18,054 annually.

Yes, after completing the course you’ll receive a certificate of completion.

Related Courses

All Course
scroll to top