Skill Up Card - Course Bundles

Pricing is per delegate, giving you huge savings over the cost of individual courses.

  • UK = £2,000 + VAT per Skill Up Card
  • Ireland = €2,400 per Skill Up Card
skill up card logo - Nexus Human

Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120)

4.6 out of 5 rating Last updated 14/11/2024   English

Jump to outline

Click "Enquire" below to find out more about this course

Interested in available dates? Would like to book a private session of this course for your company? Or for any other queries please simply fill out the form below.


Duration

5 Days

30 CPD hours

Overview

Working in an interactive learning environment, led by our expert facilitator, you'll learn to:
Understand the fundamentals of the Java platform, its lifecycle, and the responsibilities of the Java Virtual Machine (JVM), enabling you to create efficient and reliable Java applications.
Gain proficiency in using the JDK, including navigating its file structure, utilizing the command-line compiler, and executing Java applications, ensuring a smooth development process.
Master the IDE, including its interface, project management, and module creation, to enhance productivity, collaboration, and overall development workflow.
Develop solid skills in writing Java classes, defining instance variables, creating object instances, and implementing main methods, forming a strong foundation in Java programming.
Acquire expertise in adding methods to Java classes, writing constructors, and leveraging the 'this' keyword, allowing you to create more sophisticated and customizable Java applications.
Comprehend and apply core object-oriented programming concepts, such as encapsulation, inheritance, and polymorphism, to create modular, maintainable, and reusable code.
Enhance your knowledge of Java language statements, including arithmetic, comparison, and logical operators, as well as loops and switch expressions, to develop more complex and efficient Java applications.
Learn to effectively handle exceptions, create custom exception classes, and use try/catch blocks to ensure the robustness and reliability of your Java applications, minimizing potential runtime issues.
Gain proficiency in working with collections in Java, which includes learning about the different collection implementations (Set, List, and Queue), using iterators, and sorting collections. This will enable you to manage data effectively in your Java programs.

Specific Java 17 features that are covered in the course include:
Switch Expressions
Text blocks
Pattern matching for instanceof
Introduce records as carrier of immutable data

Specific Java 21 features that are covered in the course include:
Sequenced Collections
Pattern matching in Switch statements
Record Patterns

Description

Geared for experienced developers, Basic Java Programming for Developers New to OO, this hands-on, workshop-style course will provide you with an immersive learning experience that will expand your skillset and open doors to new
opportunities within the ever-growing technology landscape. Mastering Java and its powerful capabilities will provide you
with the competitive edge you need to stand out in today's fast-paced development world.
Working in a hands-on learning environment led by our expert coach, you'll thoroughly explore the foundations of the Java
platform, essential programming concepts, and advanced topics, ensuring you acquire a strong understanding of the language and its ecosystem. The object-oriented programming principles taught in this course promote code reusability and maintainability, enabling you to streamline development processes and reduce long-term costs.
Geared for experienced developers, Basic Java Programming for Developers New to OO, this hands-on, workshop-style course will provide you with an immersive learning experience that will expand your skillset and open doors to new opportunities within the ever-growing technology landscape. Mastering Java and its powerful capabilities will provide you with the competitive edge you need to stand out in today's fast-paced development world.

Working in a hands-on learning environment led by our expert coach, you'll thoroughly explore the foundations of the Java platform, essential programming concepts, and advanced topics, ensuring you acquire a strong understanding of the language and its ecosystem. The object-oriented programming principles taught in this course promote code reusability and maintainability, enabling you to streamline development processes and reduce long-term costs.

As you progress through the course, you will also gain familiarity with using an IDE, enhancing your development workflow and collaboration with other Java developers, enabling you to integrate seamlessly into new projects and teams. You'll also gain practical experience in applying the concepts and techniques learned, solidifying your newly acquired skills and facilitating their direct application in real-world scenarios. You'll exit this course empowered to create robust, scalable, and efficient Java-based applications that drive innovation and growth for your organization.

Prerequisites

In order to be successful in this course you should have incoming hands-on experience with another programming language. This course is not for non-developers or new developers.

1. The Java Platform
¢ Introduce the Java Platform
¢ Explore the Java Standard Edition
¢ Discuss the lifecycle of a Java Program
¢ Explain the responsibilities of the JVM
¢ Executing Java programs
¢ Garbage Collection
¢ Documentation and Code Reuse

2. Using the JDK
¢ Explain the JDK's file structure
¢ Use the command line compiler to compile a Java class
¢ Use the command line Java interpreter to run a Java application class

3. Using the IntelliJ IDE
¢ Introduce the IntelliJ IDE
¢ The Basics of the IntelliJ interface
¢ IntelliJ Projects and Modules
¢ Creating and running Java applications
¢ Tutorial: Working with the IDE (This course is also offered using Eclipse “ please inquire for details and options)

4. Writing a Simple Class
¢ Write a Java class that does not explicitly extend another class
¢ Define instance variables for a Java class
¢ Create object instances
¢ Primitives vs Object References
¢ Implement a main method to create an instance of the defined class
¢ Java keywords and reserved words

5. Adding Methods to the Class
¢ Write a class with accessor methods to read and write instance variables
¢ Write a constructor to initialize an instance with data
¢ Write a constructor that calls other constructors of the class to benefit from code reuse
¢ Use the this keyword to distinguish local variables from instance variables

6. Object-Oriented Programming
¢ Real-World Objects
¢ Classes and Objects
¢ Object Behavior
¢ Methods and Messages

7. Language Statements
¢ Arithmetic operators
¢ Operators to increment and decrement numbers
¢ Comparison operators
¢ Logical operators
¢ Return type of comparison and logical operators
¢ Use for loops
¢ Switch Expressions
¢ Switch Expressions and yield

8. Using Strings and Text Blocks
¢ Create an instance of the String class
¢ Test if two strings are equal
¢ Perform a case-insensitive equality test
¢ Contrast String, StringBuffer, and StringBuilder
¢ Compact Strings
¢ Text Blocks
¢ Unicode support

9. Fields and Variables
¢ Discuss Block Scoping Rules
¢ Distinguish between instance variables and method variables within a method
¢ Explain the difference between the terms field and variable
¢ List the default values for instance variables
¢ Final and Static fields and methods

10. Specializing in a Subclass
¢ Constructing a class that extends another class
¢ Implementing equals and toString
¢ Writing constructors that pass initialization data to parent constructor
¢ Using instanceof to verify type of an object reference
¢ Overriding subclass methods
¢ Pattern matching for instanceof
¢ Safely casting references to a more refined type

11. Using Arrays
¢ Declaring an array reference
¢ Allocating an array
¢ Initializing the entries in an array
¢ Writing methods with a variable number of arguments

12. Records
¢ Data objects in Java
¢ Introduce records as carrier of immutable data
¢ Defining records
¢ The Canonical constructor
¢ Compact constructors

13. Java Packages and Visibility
¢ Use the package keyword to define a class within a specific package
¢ Discuss levels of accessibility/visibility
¢ Using the import keyword to declare references to classes in a specific package
¢ Using the standard type naming conventions
¢ Introduce the Java Modular System
¢ Visibility in the Java Modular System

14. Utility Classes
¢ Introduce the wrapper classes
¢ Explain Autoboxing and Unboxing
¢ Converting String representations of primitive numbers into their primitive types
¢ Defining Enumerations
¢ Using static imports
¢ Introduce the Date/Time API
¢ LocalDate / LocalDateTime etc.
¢ Apply text formatting
¢ Using System.out.printf

15. Inheritance and Polymorphism
¢ Write a subclass with a method that overrides a method in the superclass
¢ Group objects by their common supertype
¢ Utilize polymorphism
¢ Cast a supertype reference to a valid subtype reference
¢ Use the final keyword on methods and classes to prevent overriding

16. Interfaces and Abstract Classes
¢ Define supertype contracts using abstract classes
¢ Implement concrete classes based on abstract classes
¢ Define supertype contracts using interfaces
¢ Implement concrete classes based on interfaces
¢ Explain advantage of interfaces over abstract classes
¢ Explain advantage of abstract classes over interfaces

17. Sealed Classes
¢ Introduce sealed classes
¢ The sealed and permits modifier
¢ Sealed interfaces
¢ Sealed classes and pattern matching

18. Pattern Matching
¢ Pattern Matching in switch statements
¢ Pattern Matching and sealed classes
¢ Record Patterns

19. Introduction to Exception Handling
¢ Introduce the Exception architecture
¢ Defining a try/catch blocks
¢ Checked vs Unchecked exceptions

20. Exceptions
¢ Defining your own application exceptions
¢ Automatic closure of resources
¢ Suppressed exceptions
¢ Handling multiple exceptions in one catch
¢ Enhanced try-with-resources
¢ Helpful NullPointerException(s)

21. Building Java Applications
¢ Explain the steps involved in building applications
¢ Define the build process
¢ Introduce build scripts
¢ Explain the standard folder layout
¢ Resolving project dependencies
¢ Tutorial: Importing code Using Maven

22. Introduction to Generics
¢ Generics and Subtyping
¢ Bounded Wildcards
¢ Generic Methods

23. Introducing Lambda Expressions and Functional Interfaces
¢ Understanding the concept of functional programming
¢ Understanding functional interfaces
¢ Lambda's and type inference

24. Collections
¢ Provide an overview of the Collection API
¢ Review the different collection implementations (Set, List and Queue)
¢ Explore how generics are used with collections
¢ Examine iterators for working with collections

25. Using Collections
¢ Collection Sorting
¢ Comparators
¢ Using the Right Collection
¢ Lambda expressions in Collections
¢ Sequenced Collections

Bonus Topics / Time Permitting

Streams
¢ Understanding the problem with collections in Java
¢ Thinking of program solutions in a declarative way
¢ Use the Stream API to process collections of data
¢ Understand the difference between intermediate and terminal stream operations
¢ Filtering elements from a Stream
¢ Finding element(s) within a Stream
¢ Collecting the elements from a Stream into a List

Collectors
¢ Using different ways to collect the items from a Stream
¢ Grouping elements within a stream
¢ Gathering statistics about numeric property of elements in a stream
Additional course details:

Nexus Humans Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training program is a workshop that presents an invigorating mix of sessions, lessons, and masterclasses meticulously crafted to propel your learning expedition forward.

This immersive bootcamp-style experience boasts interactive lectures, hands-on labs, and collaborative hackathons, all strategically designed to fortify fundamental concepts.

Guided by seasoned coaches, each session offers priceless insights and practical skills crucial for honing your expertise. Whether you're stepping into the realm of professional skills or a seasoned professional, this comprehensive course ensures you're equipped with the knowledge and prowess necessary for success.

While we feel this is the best course for the ITS Data Analytics course and one of our Top 10 we encourage you to read the course outline to make sure it is the right content for you.

Additionally, private sessions, closed classes or dedicated events are available both live online and at our training centres in Dublin and London, as well as at your offices anywhere in the UK, Ireland or across EMEA.

FAQ for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) Course

Available Delivery Options for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training.
  • Live Instructor Led Classroom Online (Live Online)
  • Traditional Instructor Led Classroom (TILT/ILT)
  • Delivery at your offices in London or anywhere in the UK
  • Private dedicated course as works for your staff.
How many CPD hours does the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training provide?

The 5 day. Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training course give you up to 30 CPD hours/structured learning hours. If you need a letter or certificate in a particular format for your association, organisation or professional body please just ask.

Which exam does the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training course prepare you for?

The Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) prepares you for the Yes official exam. You can take this exam at any exam center across UK including, England, Scotland, Cymru (Wales) or Northern Ireland or live online where ever you are. Exams vary in duration and if required you can request with the provider for any accommodations appropriate for you.

What is the correct audience for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training?

In order to be successful in this course you should have incoming hands-on experience with another programming language.
This course is not for non-developers or new developers

Do you provide training for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120).

Yes we provide corporate training, dedicated training and closed classes for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120). This can take place anywhere in UK including, England, Scotland, Cymru (Wales) or Northern Ireland or live online allowing you to have your teams from across UK or further afield to attend a single training event saving travel and delivery expenses.

What is the duration of the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) program.

The Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training takes place over 5 day(s), with each day lasting approximately 8 hours including small and lunch breaks to ensure that the delegates get the most out of the day.

What other terms do people search for when looking for this course?

Popular related searched include Java.

Why are Nexus Human the best provider for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120)?
Nexus Human are recognised as one of the best training companies as they and their trainers have won and hold many awards and titles including having previously won the Small Firms Best Trainer award, national training partner of the year for UK on multiple occasions, having trainers in the global top 30 instructor awards in 2012, 2019 and 2021. Nexus Human has also been nominated for the Tech Excellence awards multiple times. Learning Performance institute (LPI) external training provider sponsor 2024.
Is there a discount code for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training.

Yes, the discount code PENPAL5 is currently available for the Basic Java Programming for Developers New to OO (C, COBOL, etc.) (TT2120) training. Other discount codes may also be available but only one discount code or special offer can be used for each booking. This discount code is available for companies and individuals.

Jump to dates

Training Insurance Included!

When you organise training, we understand that there is a risk that some people may fall ill, become unavailable. To mitigate the risk we include training insurance for each delegate enrolled on our public schedule, they are welcome to sit on the same Public class within 6 months at no charge, if the case arises.

What people say about us


Top

}