Course Introduction
  • Why Yet Another Java Course?
  • Course Structure & Guidance for Doing this Course
  • Terms of Service & Copyright
Java: A High-level Overview
  • Chapter Introduction
  • What is Java & Who is Using It?
  • Story behind Java's Creation ~ A Brief History
  • Compilation
  • Platform Dependency + Demo
  • Interpreter
  • Platform Independence in Java + Demo
  • Java Virtual Machine
  • An Overview of Java SE
  • Java SE Release Cycles & Release History
  • Installing JDK 10 on Windows
  • Installing JDK 10 on Mac
  • Installing JDK10 on Linux
  • Setting Classpath Environment Variable
  • Writing First Java Program + Demo
  • Conclusion
  • Chapter Quiz
  • Important Q&A Discussions!
Classes, Objects and their Members
  • Chapter Introduction
  • Class & Objects
  • Demo: Absolute Java Basics
  • Variables: Introduction
  • Demo: Declaring & Re-initializing Variables
  • Currency Converter - Creating a Class with Variables
  • Variables: Primitive Types
  • Primitive Variables: Integers + Demo
  • Demo: Other Integer Literal Formats
  • Primitive Variables: Floating-point Numbers + Demo
  • Demo: Floating-point Pitfalls
  • Primitive Variables: Character Data Type + Demo
  • Demo: Alternate ways to initialize char variables
  • Demo: Primitive Variables: Boolean Data Type
  • Demo: Variable Kinds
  • Demo: Multi-variable Declaration Statements
  • Quiz: Variables
  • Variables: Type Casting + Demo
  • Variables: Object References + Demo
  • Statements + Demo
  • Arrays + Demo
  • Currency Converter - Array Creation & Accessing it Elements
  • 2D Arrays
  • 3D Arrays + Demo
  • Methods: Introduction + Demo
  • Method Types + Demo
  • Summary on Accessibility of Members from Static & Instance Methods
  • Currency Converter ~ Invoking Methods of an Object
  • How Data is Passed to Methods in Java? + Demo
  • Method Overloading + Demo
  • Methods: varargs + Demo
  • Constructors + Demo
  • Constructor Overloading + Demo
  • Demo: Constructor Overloading ~ Alternate way of delegating
  • Demo: this Reference
  • Demo: Reinitializing Object References ~ More Brainstorming!
  • Arrays with Object References
  • Review of Exercise 1 Solution with Best Practices
  • Conclusion
  • Chapter Quiz
  • Important Q&A Discussions!
Method Building Blocks: Operators & Control-flow Statements
  • Chapter Introduction
  • Operators
  • Arithmetic Operators + Demo
  • Arithmetic Operation Rules + Demo
  • Quiz: Arithmetic Operators
  • Note on Student Class
  • Demo: Comparison Operators
  • Logical Operators + Demo
  • Car Price Estimator ~ Coding Exercise for Comparison & Logical Operators
  • Car Price Estimator ~ Putting Comparison & Logical Operators into Action
  • Car Price Estimator - Exercise Solution
  • Bitwise Operators + Demo
  • Quick Note on Bitwise Operators with Boolean Operands
  • Bit Shift Operators
  • Quiz: Bitwise & Bit Shift Operators
  • Control-flow: Demo: if-statement
  • Control-flow: switch + Demo
  • When is switch Preferred?
  • Quiz: switch Statement
  • Control-flow: Ternary + Demo
  • Additional Notes on Ternary Operator
  • Control-flow: for Statement + Demo
  • Demo: More for Statement ...
  • Demo: for-each Statement
  • Variable Scope
  • Exercise
  • Computing GPA ~ Putting Operators & Control-flow to Test
  • Control-flow: while Statement
  • Control-flow: break Statement + Demo
  • Control-flow: continue + Demo
  • Recursion + Demo
  • Conclusion
Packages, Strings and Information Hiding Design Principle
  • Chapter Introduction