{"id":30109044,"url":"https://github.com/praveenamirisetty/core_java_codes","last_synced_at":"2025-08-10T03:20:47.389Z","repository":{"id":264443621,"uuid":"860962426","full_name":"praveenamirisetty/CORE_JAVA_CODES","owner":"praveenamirisetty","description":"Learning Core Java ","archived":false,"fork":false,"pushed_at":"2024-09-23T13:58:49.000Z","size":3,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-26T05:51:08.602Z","etag":null,"topics":["java","java-basics"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/praveenamirisetty.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-21T16:21:50.000Z","updated_at":"2024-12-15T17:42:17.000Z","dependencies_parsed_at":"2024-11-24T11:23:56.847Z","dependency_job_id":"2c055ab5-a952-4c0b-b22b-652663e6110c","html_url":"https://github.com/praveenamirisetty/CORE_JAVA_CODES","commit_stats":null,"previous_names":["avpkn25/core_java_codes","praveenamirisetty/core_java_codes"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/praveenamirisetty/CORE_JAVA_CODES","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praveenamirisetty%2FCORE_JAVA_CODES","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praveenamirisetty%2FCORE_JAVA_CODES/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praveenamirisetty%2FCORE_JAVA_CODES/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praveenamirisetty%2FCORE_JAVA_CODES/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/praveenamirisetty","download_url":"https://codeload.github.com/praveenamirisetty/CORE_JAVA_CODES/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/praveenamirisetty%2FCORE_JAVA_CODES/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269670091,"owners_count":24456803,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-10T02:00:08.965Z","response_time":71,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["java","java-basics"],"created_at":"2025-08-10T03:20:44.948Z","updated_at":"2025-08-10T03:20:47.372Z","avatar_url":"https://github.com/praveenamirisetty.png","language":"Java","readme":"# CORE_JAVA_CODES\n\n![Java](https://img.shields.io/badge/Language-Java-orange?logo=java\u0026logoColor=white)\n![Status](https://img.shields.io/badge/Status-Active-brightgreen)\n![Contributions](https://img.shields.io/badge/Contributions-Welcome-blue)\n\nThis repository contains **basic Java programs** covering the **fundamental concepts of Core Java**.  \nIt is designed for **beginners** to learn:\n\n- Programming syntax  \n- Conditional statements  \n- Loops  \n- Operators  \n- Type conversion  \n\n---\n\n## 📂 Project \n```\nCORE_JAVA_CODES/\n│\n├── AssignmentOperators.java    # Demonstrates assignment operators\n├── DoWhileLoop.java            # Example of do-while loop\n├── FirstJavaProgram.java       # Basic Hello World program\n├── ForLoop.java                # Example of for loop\n├── IfElse.java                 # Demonstrates if-else statement\n├── IfElseIf.java               # Demonstrates if-else if ladder\n├── Literals.java               # Examples of Java literals\n├── LogicalOperators.java       # Logical operators (\u0026\u0026, ||, !)\n├── RelationalOperators.java    # Relational operators (\u003e, \u003c, ==, !=)\n├── Switch_Case.java            # Example of switch-case statement\n├── TernaryOperator.java        # Example of ternary operator (? :)\n├── TypeConversion.java         # Type casting and conversion\n├── WhileLoop.java              # Example of while loop\n└── README.md                   # Project documentation\n```\n---\n\n## 🗂 Program Categories\n\n### **Day 1 – Basics**\n- `FirstJavaProgram.java`  \n- `AssignmentOperators.java`  \n- `Literals.java`  \n- `LogicalOperators.java`  \n- `RelationalOperators.java`  \n- `Switch_Case.java`  \n- `TernaryOperator.java`  \n- `TypeConversion.java`  \n\n### **Day 2 – Conditional Statements \u0026 Loops**\n- `IfElse.java`  \n- `IfElseIf.java`  \n- `ForLoop.java`  \n- `WhileLoop.java`  \n- `DoWhileLoop.java`  \n\n---\n\n## 📌 Topics Covered\n\n- ✅ **Java Basics** – Syntax, variables, and data types  \n- ✅ **Operators** – Arithmetic, Relational, Logical, Ternary  \n- ✅ **Conditional Statements** – `if`, `if-else`, `if-else-if`, `switch-case`  \n- ✅ **Loops** – `for`, `while`, `do-while`  \n- ✅ **Type Conversion** – Casting between data types  \n- ✅ **Literals** – Integer, floating-point, character, boolean, string  \n\n---\n\n## 🚀 How to Run\n\n1. **Clone the repository**\n   ```bash\n   git clone https://github.com/\u003cyour-username\u003e/CORE_JAVA_CODES.git\n2. **Navigate to the project folder**\n   ```bash\n   cd CORE_JAVA_CODES\n3. **Compile any Java file**\n  ```bash\n  javac FileName.java\n  ```\n4. **Compile any Java file**\n  ```bash\n  javac FileName.java\n  ```\n5. **Run the compiled program**\n  ```bash\n  javac FileName.java\n  ```\n\n## 📝 Notes\n\n- All programs are **beginner-friendly** and **standalone**.  \n- Compatible with **JDK 8 or higher**.  \n- Each file demonstrates a **single concept for clarity**.  \n\n---\n\n## 👨‍💻 Author\n\n**Praveen Kumar**  \nPassionate about **Java, Backend Development, and Cloud Computing**.  \n\n---\n\n## ⭐ Contribute\n\nIf you find this helpful, **star the repo** ⭐ and feel free to **contribute** by adding more Java programs!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpraveenamirisetty%2Fcore_java_codes","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpraveenamirisetty%2Fcore_java_codes","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpraveenamirisetty%2Fcore_java_codes/lists"}