Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 1.06 KB

File metadata and controls

27 lines (19 loc) · 1.06 KB

Java Programming Projects

Overview

This repository collects my coursework and practice exercises from Java programming. The projects cover fundamental topics such as variables, control flow, object‑oriented programming, data structures, and basic algorithms.

Structure

  • -- Chapter 1 – Introductory programs, variables, input/output.
  • Chapter 3 – Conditionals and loops exercises.
  • Chapter 4 – Arrays, strings, and simple classes.
  • Chapter 5 – More classes, inheritance, and polymorphism.
  • Chapter 7 – Error handling and file IO.

Each folder contains one or more .java files and a brief README describing the assignment. Most projects compile with a standard JDK 17.

How to Run

# Compile a specific project
javac Chapter3/Example.java

# Run the compiled class
java Chapter3.Example

Professional Value

Completing these assignments strengthened my grasp of core Java concepts, object‑oriented design, and problem‑solving. The code here reflects my progression from simple programs to more structured applications.