🚀 Day 1 of my Java journey! Today I spent 4 hours learning Java from scratch, and here's what I covered: ✅ How Java works (JVM, compile once, run anywhere) ✅ Setting up my development environment ✅ Variables — int, double, String, boolean ✅ Reading user input with Scanner ✅ Arithmetic operators ✅ String methods ✅ If/else logic and decision making ✅ Random numbers Java is a powerful, in-demand language for backend development and I am committed to learning it every day to become a Java developer. 💪 This is Day 1 of many. If you are on a similar journey or can share advice, please connect with me! 🙏 #Java #JavaDeveloper #100DaysOfCode #LearningToCode #Coding #Programming #TechCareer #BackendDevelopment
Java Basics: Day 1 - JVM, Variables, and Logic
More Relevant Posts
-
🚀 New YouTube Video is Live! Understanding loops is a key step in mastering Java programming, and in this video, I break it down in a simple and clear way. 🔁 What you’ll learn: • The syntax of different loops in Java • How "for", "while", and "do-while" loops work • When to use each type of loop • Practical examples to help you understand faster Whether you're just starting with Java or want to strengthen your fundamentals, this video is for you. 💡 Clean code, clear explanation, and practical mindset. 🎥 Check it out and let me know your feedback! https://lnkd.in/dw4frPkU #Java #Programming #Coding #SoftwareDevelopment #LearnToCode #JavaBasics #Loops #YouTubeLearning
loops in JAVA
https://www.youtube.com/
To view or add a comment, sign in
-
🚀 Day 29 of My Java Journey 📌 Topic: "break" vs "continue" in Java Today I learned how to control loops more effectively using two powerful statements 👇 --- 🔹 "break" Statement 👉 Immediately terminates the loop 👉 Execution moves outside when condition becomes true 🔹 "continue" Statement 👉 Skips the current iteration 👉 Moves to the next iteration of the loop --- 💡 Simple Difference: ✔ "break" → Terminates the loop ❌ ✔ "continue" → Skips current iteration ⏭️ --- ⚡ Why this matters? ✔ Cleaner and optimized code ✔ Better control over loop execution ✔ Useful in real-world scenarios (filtering, searching, validations) --- 🔥 Consistency is the key to becoming a better developer every day! #Java #CodingJourney #LearnToCode #100DaysOfCode #Programming #DeveloperLife
To view or add a comment, sign in
-
-
#Day_13 of My Java Learning Journey – Writing Functions in Java Today I practiced how to create functions (methods) in Java, and I built a simple program to check whether a number is Even or Odd. 🔥 What I learned today: ✔ How to create a boolean function ✔ How to use if-else conditions inside a method ✔ How to return true/false ✔ How to call a method inside the main() function ✔ How to print the result in the console 🧩 Example I worked on: I created a method IfEven(int a) that: Prints whether the number is Even or Odd Returns a boolean value (true for even, false for odd) This helped me understand functions more clearly and how they improve code structure and reusability. #Java #LearningJourney #100DaysOfCode #Coding #Developer #JavaBeginners #OOP #CodeNewbie
To view or add a comment, sign in
-
-
🚀 Day 35 – Mastering Java Exception Handling Today I learned one of the most powerful concepts in Java — the "throw" keyword 💡 🔹 What is "throw"? 👉 It is used to manually throw an exception based on a condition 🔹 Why it matters? ✔ Gives control to the programmer ✔ Helps in handling invalid conditions effectively ✔ Makes code more secure and logical 🔹 Key Learning Points: ✅ "throw" is used inside methods ✅ It throws only one exception at a time ✅ After "throw", remaining code does not execute ✅ Works best with "if" conditions Aman Soni Vidhya Code Gurukul 🔹 Example Insight: 👉 If age < 18 → throw exception → “Not eligible” ❌ 💭 Learning Reflection: Understanding "throw" made me realize how developers can control program flow and handle errors smartly, instead of relying only on system-generated exceptions. 📌 Step by step, improving my Java fundamentals! #Java #Programming #ExceptionHandling #CodingJourney #BTech #LearningEveryday 💻✨
To view or add a comment, sign in
-
-
🚀 Day 13 of My Java Journey Today I explored Java Keywords — the building blocks of Java programming 💻 🔑 Key Learnings: • Java has 53 reserved keywords • Keywords are predefined & cannot be used as identifiers • All keywords are written in lowercase • Learned categories: 👉 Program Control (if, else, for, while...) 👉 OOP Concepts (class, interface, extends...) 👉 Miscellaneous (import, package, this...) 💡 Interesting Fact: "true", "false", and "null" are reserved literals, not keywords! ⚠️ Bonus Tip: Keywords like "goto" and "const" are reserved but not used in Java Aman Soni 📌 Understanding keywords is the first step to mastering Java syntax and logic. #Java #Programming #CodingJourney #100DaysOfCode #JavaDeveloper #Learning #Tech #Beginners #CodeNewbie #DeveloperJourney
To view or add a comment, sign in
-
-
Looks simple… but Java has its own logic 🧠 Two strings. Same value. Still not equal? 🤔 That’s where most developers get confused ⚠️ In Java, it’s not just about what you see… It’s about how it’s created internally If you understand this concept, you’re already ahead of many developers 🚀 🚨 Stop just watching tutorials… Real growth = Practice + Consistency 💯 🔥 Java Daily Practice ☕️ 👉 Join & start today 🔗 https://lnkd.in/gfhqgjGd 🚀 💬 What do you think the output will be? #Java #Debugging #Programming #BackendDeveloper #Coding #TechLearning
To view or add a comment, sign in
-
Day 35/100 – Exploring ListIterator in Java 🔁 Today I explored the use of ListIterator in Java while working with ArrayList. Unlike a normal iterator, ListIterator allows traversal in both directions, making it more flexible when working with lists. Key learnings: • Traverse elements using next() • Move backward using previous() • Check elements using hasNext() and hasPrevious() • Useful for bidirectional iteration and modifications Understanding different ways to iterate through data structures helps in writing more efficient and flexible code. Learning something new every day, one step at a time. 🚀 #100DaysOfCode #Java #ArrayList #DataStructures #CodingJourney #LearningInPublic
To view or add a comment, sign in
-
-
🚀 Day 13 of My Java Learning Journey Today I explored one of the most powerful concepts in programming — Looping Statements in Java 📌 Loops help us execute code multiple times without repetition, making programs efficient and clean. 🔹 What I covered today: ✅ For Loop (including Nested loops) ✅ While Loop ✅ Do-While Loop ✅ Labelled Loop (for advanced control) ✅ For-Each Loop (for arrays & collections) 💡 Key Understanding: Loops are the backbone of logic building — from simple tasks to solving complex real-world problems. 📈 Every day I’m getting better at writing optimized and structured code 💪 🔗 GitHub: https://lnkd.in/gDP4A9r6 Let’s connect and grow together 🚀 #Java #JavaDeveloper #Loops #ForLoop #WhileLoop #CodingJourney #SoftwareDevelopment
To view or add a comment, sign in
-
-
🚀 Exploring JShell – Java Made Interactive! Recently, I explored JShell, an interactive tool introduced in Java that makes learning and testing Java code much easier. ✨ With JShell, we can: ✔ Run Java code instantly without creating full programs ✔ Test logic quickly ✔ Learn Java concepts step-by-step ✔ Improve productivity while coding It feels like a REPL (Read-Evaluate-Print Loop) for Java, making development faster and more interactive. 💡 As a Java learner, I found JShell very helpful for practicing small code snippets and understanding concepts better. Looking forward to exploring more such tools to improve my development skills 🚀 #Java #JShell #Programming #Coding #JavaDeveloper #Learning #Tech #DeveloperJourney
To view or add a comment, sign in
-
💻 Understanding Multithreading in Java 🧵⚡ Most beginners watch multithreading… but don’t actually understand how it works internally. So today, I broke it down visually 👇 👉 In Java, multithreading allows multiple tasks to run concurrently within the same process. 👉 All threads share the same memory space, making execution faster and more efficient. 🔍 What’s happening behind the scenes? The main thread starts execution The JVM manages threads & memory Multiple threads run tasks in parallel Once completed → control returns to the main thread ⚡ Why it matters? ✔ Better CPU utilization ✔ Faster execution ✔ Improved application responsiveness 💡 Real-world use cases: Background tasks (file processing, logging) Web servers handling multiple requests Games & real-time systems 🚀 Key takeaway: Don’t just learn syntax — understand how things work under the hood. That’s what separates a coder from a developer. #Java #Multithreading #Concurrency #BackendDevelopment #100DaysOfCode #Learning #SoftwareEngineering
To view or add a comment, sign in
-
Explore content categories
- Career
- Productivity
- Finance
- Soft Skills & Emotional Intelligence
- Project Management
- Education
- Technology
- Leadership
- Ecommerce
- User Experience
- Recruitment & HR
- Customer Experience
- Real Estate
- Marketing
- Sales
- Retail & Merchandising
- Science
- Supply Chain Management
- Future Of Work
- Consulting
- Writing
- Economics
- Artificial Intelligence
- Employee Experience
- Workplace Trends
- Fundraising
- Networking
- Corporate Social Responsibility
- Negotiation
- Communication
- Engineering
- Hospitality & Tourism
- Business Strategy
- Change Management
- Organizational Culture
- Design
- Innovation
- Event Planning
- Training & Development
https://www.youtube.com/watch?v=q6z_UCBM5Ek&t=3720s