TT2000 - Java for Non-Developers | Getting Started with Programming, OO, and Java Basics

Getting Started with Programming, OO and Java Basics for Non-Developers is a fast-paced, five day course designed to provide you with a first look at how to code in Java to a very basic level. You’ll gain light hands-on programming experience, while you begin your journey to develop a programmer’s mindset.

Throughout the course you’ll explore the intricacies of the application development cycle, program structure, and language syntax. You’ll learn and practice core coding skills including fundamental OO concepts, vital programming constructs, string and character manipulation, dynamic memory allocation, standard input/output, and exception handling. You’ll also explore the power of inheritance and polymorphism as you learn to define specialized object implementations. The course also covers processing command line arguments and environment variables, empowering you to set up your own development environment to create flexible, user-friendly programs. With a wealth of hands-on lab exercises, you’ll practice and refine your newly acquired skills.

Becoming a modern software developer is like learning a new language; it requires study, practice, and dedication well beyond this course to apply your new skills effectively. While this five day program won’t transform you into an experienced developer, it will lay a solid foundation in coding basics using Java, while teaching you to think like a programmer. Although this course is technical in nature, our instructors will guide you every step of the way, providing a supportive environment for you to explore, ask questions, and prepare for your next learning milestones.

NOTE: Although this course is geared for non-developers, it is helpful for attendees to have a somewhat technical background and to be comfortable working with computers, having the ultimate goal of becoming a Java software developer.

Student Testimonials

Instructor did a great job, from experience this subject can be a bit dry to teach but he was able to keep it very engaging and made it much easier to focus. Student
Excellent presentation skills, subject matter knowledge, and command of the environment. Student
Instructor was outstanding. Knowledgeable, presented well, and class timing was perfect. Student

Click here to print this page »

Prerequisites


· Basic computer literacy: Familiarity with computer operating systems, file management, and general navigation to ensure a smooth learning experience.
· Foundational knowledge of IT concepts: Understanding of essential IT terminologies and concepts, such as computer networks, software applications, and data storage.
· Analytical thinking: Ability to analyze problems and think critically to develop logical solutions, fostering a programmer's mindset.
· Attention to detail: A keen eye for detail, ensuring the ability to spot errors and maintain code quality throughout the learning process.

Detailed Class Syllabus


Day 1


1. Overview of Computer Programming
· Explain what a program is
· Explain why there are different types of languages
· Explain what a compiler is
· Explain what an interpreter is
2. Features of a Program
· Understand what the entry and exit points of an application are
· Explain what variables are
· Explain what programming instructions are
· Explain what errors and exceptions are
· Understand what programming algorithms are
3. Software Development Life Cycle
· Purpose of the software development life cycle
· SDLC Phases
· software development life cycle vs a methodology
4. Thinking in Objects
· Understand the difference between a class and an object
· Deconstruct an object into attributes and operations
· Map an object to a class
· Define inheritance
5. 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
6. 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
7. The IntelliJ Paradigm
· Introduce the IntelliJ IDE
· The Basics of the IntelliJ interface
· IntelliJ Projects and Modules
· Creating and running Java applications

Day 2


8. 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
9. 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
10. Object-Oriented Programming
· Real-World Objects
· Classes and Objects
· Object Behavior
· Methods and Messages
11. Inheritance, Abstraction, and Polymorphism
· Encapsulation
· Inheritance
· Method Overriding
· Polymorphism
12. Language Statements
· Arithmetic operators
· Operators to increment and decrement numbers
· Comparison operators
· Logical operators
· Return type of comparison and logical operators
· Use for loops
· Swtch Expressions
· Switch Expressions and yield

Day 3


13. 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
14. 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
15. 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
· Pattern matching for instanceof
· Overriding subclass methods
· Safely casting references to a more refined type
16. Using Arrays
· Declaring an array reference
· Allocating an array
· Initializing the entries in an array
· Writing methods with a variable number of arguments
17. Formatting Strings
· Format a String using the formatter syntax
· Apply text formatting
· Use String.format and System.out.printf

Day 4


18. Records
· Data objects in Java
· Introduce records as carrier of immutable data
· Defining records
· The Canonical constructor
· Compact constructors
19. 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
· Visibility in the Java Modular System
· Correctly executing a Java application class
· The Java Modular System
· Defining Modules
20. Utility Classes
· Introduce the wrapper classes
· Autoboxing and Unboxing
· Converting String representations of primitive numbers into their primitive types
· Defining Enumerations
· Using static imports
· Deprecating classes and methods
21. Java Date/Time
· The Date and Calendar classes
· Introduce the new Date/Time API
· LocalDate, LocalDateTime, etc.
· Formatting Dates
· Working with time zones
· Manipulate date/time values
22. 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
23. 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
· Advantage of interfaces over abstract classes
· Advantage of abstract classes over interfaces
24. Introduction to Exception Handling
· Introduce the Exception architecture
· Defining a try/catch blocks
· Checked vs Unchecked exceptions

Day 5


25. 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)
26. Building Java Applications
· Steps involved in building applications
· Define the build process
· Introduce build scripts
· Explain the standard folder layout
· Resolving project dependencies
27. Introduction to Generics
· Generics and Subtyping
· Bounded Wildcards
· Generic Methods
· Legacy Calls To Generics
· When Generics Should Be Used
28. 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
29. Sealed Classes
· Introduce sealed classes
· The sealed and permits modifier
· Sealed interfaces
· Sealed classes and pattern matching