Skip to content
This repository was archived by the owner on Jan 25, 2026. It is now read-only.

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Java Basics

Welcome to Java101! This project focuses on the very basics of Java that we talked about in today's study session, including file naming, code formatting, variable naming, and method writing.

Setup Instructions

Step 1: Fork and Clone the Repository

  1. Fork the Repository:
    • Click the "Fork" button at the top right of this repository to create your copy.
  2. Clone Your Fork:
    git clone https://github.com/YOUR_USERNAME/java-basics-project.git
    cd java-basics-project
  3. Complete the Tasks
    • Open Task.java
    • Implement the tasks as described in the comments.
  4. Submit Your Work
    • Create a Branch:
    git checkout -b main
    • Commit and Push:
    git add Tasks.java
    git commit -m "Completed Java basics tasks"
    git push origin main
    • Open a Pull Request: Go to your forked repository on GitHub and submit a pull request to the main repository.