🚀 Day 7 of My Java Learning Journey – Advance Arrays Today, I explored advanced concepts of arrays in Java, moving beyond basics into more structured and flexible data handling. Here’s what I learned 👇 🔹 Working with 2D Arrays (Matrix) → Understanding rows & columns using nested loops 🔹 Exploring Jagged Arrays → Handling arrays with different column sizes 🔹 Passing arrays to methods → Learning how arrays behave when passed as arguments 🔹 Returning arrays from methods → Building reusable and modular code 💡 This practice helped me realize how arrays can represent complex data structures and how methods make code more organized and reusable. 📌 Key Learning: Mastering arrays is essential because they are the building blocks for advanced topics like data structures and algorithms. 💻 Small steps every day = Big progress over time! #Java #Programming #CodingJourney #Arrays #2DArray #JaggedArray #100DaysOfCode #Learning #JavaDeveloper
Java Arrays: 2D & Jagged Arrays, Passing & Returning
More Relevant Posts
-
🚀 Day 6 of My Java Learning Journey – Mastering Arrays Today, I worked on strengthening my fundamentals of arrays in Java by implementing multiple important operations in a single program. Here’s what I practiced 👇 🔹 Introduction of aray 🔹 Traversing an array using enhanced for-loop 🔹 Calculating the sum of elements 🔹 Finding maximum & minimum values 🔹 Reversing an array 🔹 Performing linear search 🔹 Implementing Bubble Sort 💡 This small program helped me understand how powerful arrays are when combined with logic and loops. It also improved my problem-solving skills step by step. 📌 Key Learning: Arrays are not just about storing data — they are the foundation for solving real-world problems efficiently. 💻 Consistency is the key. Every day, one step forward! #Java #Programming #CodingJourney #Arrays #100DaysOfCode #Learning #JavaDeveloper #ProblemSolving
To view or add a comment, sign in
-
🚀 Day 2 of. My Java Journey – Learning Variables Today, I started learning Java programming and covered one of the most fundamental concepts: Variables 🎯 Variables are used to store data in a program, such as numbers, text, and more. Understanding how to declare and use variables is the first step toward building strong programming logic. 💡 Key Learnings: • Variables act as containers to store data • Each variable has a specific data type (int, float, String, etc.) • Learned about declaration and initialization • Understood basic naming conventions for variables 🧠 Example: int age = 20; String name = "ABC"; Consistency is key to success, and I’m excited to learn more step by step 🚀 📌 Next Step: Data Types & Operators #Java #CodingJourney #Programming #Learning #DeveloperJourney #100DaysOfCode
To view or add a comment, sign in
-
🌟 Day 41/100 of My Java Learning Journey! Today, I learned about 2D Arrays in Java, which allow us to store data in a tabular format using rows and columns. This concept is very useful for representing matrices, tables, and grid-based data. 🔹 What is a 2D Array? A 2D array is an array of arrays. It stores data in rows and columns, just like a table. Each element is accessed using: array[row][column] 🔹 Key Features of 2D Arrays ✔ Stores data in matrix form ✔ Uses row and column indexing ✔ Index starts from 0 ✔ Can store multiple values efficiently ✔ Accessed using nested loops 🔹 Where 2D Arrays Are Used Matrix operations Game boards (like tic-tac-toe) Tables and grids Image processing Data representation in rows and columns 🌱 Reflection Learning 2D arrays helped me understand how Java handles structured data in rows and columns. It improved my understanding of nested loops and multi-dimensional data handling. Every new concept is making my Java journey more interesting! 🚀💪 Thanks for mentors 10000 Coders Raviteja T 🔖 #Day41 #Java #2DArrays #Arrays #JavaLearning #100DaysOfCode #LearningJourney #CodingLife #WomenInTech #JavaBasics #TechCareer #KeepGrowing
To view or add a comment, sign in
-
🚀 Learning OOPs with Java – Abstraction & Polymorphism 💻 Today I practiced an important concept of Object-Oriented Programming: Abstraction with Polymorphism. 🔹 I created an abstract class Pen with an abstract method draw(). 🔹 Then I implemented two subclasses: BluePen and RedPen. 🔹 Both classes override the same method in their own way. 👉 This shows how one method can behave differently (Polymorphism). 💡 Key Learning: Abstract class defines structure, not implementation Subclasses must override abstract methods Same reference, different objects = powerful concept! 📌 Code Output: Pen -> Blue Pen -> Red I'm improving step by step and enjoying the journey of learning Java 🚀 #Java #OOP #Programming #Coding
To view or add a comment, sign in
-
-
Today I explored one of the most essential data structures in Java — ArrayList. From understanding dynamic resizing to mastering common methods like add(), get(), and remove(), it’s amazing how flexible and powerful it is compared to traditional arrays. 💡 Key takeaways: ✔ Dynamic size makes it super flexible ✔ Easy data manipulation with built-in methods ✔ Cleaner iteration using for-each loops Grateful for the continuous learning journey and excited to apply this in real projects! 💻 #Java #Programming #CodingJourney #ArrayList #SoftwareDevelopment #LearningEveryday TAP Academy @Bibek singh
To view or add a comment, sign in
-
-
🚀 Day 16/45 – Understanding Abstraction in Java On Day 16 of my Java learning journey, I explored Abstraction, one of the core principles of Object-Oriented Programming. Abstraction focuses on hiding implementation details and showing only the essential functionality to the user. 📚 What I Learned Today Today I learned: ✔ What abstraction is and why it is important ✔ How to use abstract classes in Java ✔ Understanding abstract methods (methods without body) ✔ How abstraction works with inheritance 💻 Practice Work To apply my learning, I implemented: • An animal example using abstract class • A shape example demonstrating abstraction 🎯 Key Takeaway Abstraction helps simplify complex systems by hiding unnecessary details and focusing on what is important. It plays a key role in building clean and scalable applications. Step by step, I am gaining a deeper understanding of OOP concepts. #Java #Programming #LearningInPublic #CodingJourney #SoftwareDevelopment #OOP
To view or add a comment, sign in
-
🚀 Today’s Learning: ArrayDeque in Java In today’s session, I explored the concept of ArrayDeque, a powerful and efficient data structure in Java. 🔹 Learned the properties of ArrayDeque such as dynamic resizing and fast insertion/deletion 🔹 Explored important methods like addFirst(), addLast(), offer(), poll(), peek(), remove() 🔹 Understood how to access elements using loops and iterators 🔹 Discovered when to use ArrayDeque for both stack (LIFO) and queue (FIFO) operations 💡 Key Insight: ArrayDeque is a better alternative to Stack and often more efficient than LinkedList for queue operations. Excited to implement these concepts in coding and real-world applications! 💻✨ TAP Academy Bibek Singh #Java #ArrayDeque #DataStructures #Coding #LearningJourney #InterviewPrep
To view or add a comment, sign in
-
-
Learning Polymorphism in Java Today I explored one of the core concepts of OOPs – Polymorphism. It allows a single method to perform multiple behaviors depending on the object. 🔹 Covered: Compile-time polymorphism (Method Overloading) Runtime polymorphism (Method Overriding) Real examples with Java code Understanding this concept improves code flexibility, reusability, and scalability. 📘 Sharing my handwritten notes + examples for better understanding. #Java #OOP #Polymorphism #Programming #CodingJourney #Learning #JavaDeveloper #SoftwareDevelopment
To view or add a comment, sign in
-
-
Revising the four pillars of Object-Oriented Programming (OOP) — starting with Encapsulation 🚀 Encapsulation is all about binding data and methods together while restricting direct access using access modifiers. It helps in improving data security, maintainability, and code organization. In this example, I used a private variable and accessed it through getter and setter methods, which is a simple and effective way to implement encapsulation in Java. 🔹 Key takeaway: Always protect your data and expose only what is necessary. #Java #OOP #Encapsulation #Programming #CodingJourney #Learning #Developer
To view or add a comment, sign in
-
-
Learning Encapsulation in Java Today I practiced one of the core concepts of OOPs — Encapsulation. Encapsulation means wrapping data (variables) and code (methods) together in a single unit (class), and controlling access using getters and setters. I created a simple Student class with: id name course Instead of accessing variables directly, I used: - private variables - public getter and setter method What I learned: - Data hiding improves security - Code becomes more controlled and maintainable - Direct access to variables should be avoided Small steps every day towards becoming a better developer #Java #OOP #Encapsulation #CodingJourney #BeginnerDeveloper
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
I am interested in this position reach out at : varunbonagiri71@gmail.com