Java Course Curriculum
Our java course enables students to explore the fundamentals of class-based and object-oriented programming.
- Intro to classes.
- What is the main method?
- Java print statement.
- How to comment on your code.
- Intro to data types.
- Intro to methods.
- How to create variables.
- Intro to concatenation.
- Intro to methods continued. (Built-in, User-defined)
- Don’t Repeat Yourself. (D.R.Y.)
- Defining and calling methods.
- Adding parameters in a method.
- Intro to arithmetic operators.
- The return statement. (return types)
- Storing return values.
- Type casting.
- The math class.
- Intro to relational operators.
- Conditional statements.
- Chaining conditional statements.
- The modulo operator.
- Intro to while loops.
- Intro to for loops.
- Looping with decrements.
- Break statements and continue statements.
- Intro to printf().
- Intro to arrays.
- Looping through an array.
- Using array initializers.
- Intro to method overloading.
- Integer class.
- Intro to two-dimensional arrays.
- Looping through a two-dimensional array.
- Two-dimensional array initializers.
- The for-each loop.
- Intro to logical operators. (&&, ||)
- Complex conditional statements.
- Recursion.