Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 922 Bytes

File metadata and controls

51 lines (38 loc) · 922 Bytes

Java Basics

This module covers fundamental Java concepts and syntax.

Topics Covered

  • Variables and Data Types

    • Primitive types (int, double, boolean, char, etc.)
    • Reference types
    • Type conversion and casting
  • Operators

    • Arithmetic operators
    • Relational operators
    • Logical operators
    • Bitwise operators
    • Assignment operators
  • Control Flow

    • if-else statements
    • switch statements
    • for loops
    • while loops
    • do-while loops
    • break and continue
  • Arrays

    • Single-dimensional arrays
    • Multi-dimensional arrays
    • Array operations
  • Strings

    • String manipulation
    • StringBuilder and StringBuffer
    • String methods

How to Use

Each topic has example code demonstrating the concepts. Navigate through the source code to explore implementations and test cases.

Building

mvn clean install

Running Tests

mvn test