Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

README.md

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