Explore tweets tagged as #30DaysOfJava
@WasimEverylogy
Wasim Sheikh
2 years
Tweet media one
Tweet media two
Tweet media three
Tweet media four
1
0
0
@Iadi96Singh
Aditya singh
29 days
🧡 Day 27/30 – Java Mini Project πŸ“š. Today I built a Library Management System using everything I’ve learned so far in #30DaysOfJava! πŸ’». Real ✨ Java ✨ in action!.#Java #LearnInPublic #ConsoleApp #JavaProject
Tweet media one
Tweet media two
0
0
1
@WasimEverylogy
Wasim Sheikh
2 years
Day 26 .Part 2 : Problem practice & revision -.πŸ’»Write a java method to compute the average of three numbers. πŸ’»Write a java method name isEven that accept an int argument.The method should return true if the argument is even, or false otherwise.#30daysofjava
Tweet media one
Tweet media two
1
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 15. Some patterns problem solved. #DSA #Pattern #functions #Java #30daysofjava
Tweet media one
Tweet media two
Tweet media three
Tweet media four
1
0
0
@WasimEverylogy
Wasim Sheikh
1 year
Solved the below practice problem - . #java #30daysofjava #practice #learninginpublic
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 16. Some more patterns problem solved. #DSA #Pattern #functions #Java #30daysofjava
Tweet media one
Tweet media two
Tweet media three
1
0
0
@Iadi96Singh
Aditya singh
1 month
🧩 Day 19/30 – #30DaysOfJava.πŸ”– Annotations = Metadata for classes, methods & more. ✨ Key ones:.βœ… @Override – ensure method override.⚠️ @Deprecated – mark outdated code.πŸ”‡ @SuppressWarnings – hide compiler warnings. #Java #LearnInPublic
Tweet media one
Tweet media two
0
0
1
@WasimEverylogy
Wasim Sheikh
1 year
Day 28. Revision Time - .After a long break again starting the java. After that going to start the OOPs concept. #java #30daysofjava
Tweet media one
2
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 20 .Part 2 - . Also started to understand the logic behind 'Trapping Rainwater' Problem. Tomorrow I will try to solve this πŸ™‚ . #java #dsa #30daysofjava #learninginpublic #buildinpublic #sde #leetcode #trappingRainWater #Algorithms
Tweet media one
1
0
1
@WasimEverylogy
Wasim Sheikh
2 years
Day 25. Part 3-. πŸ““ Selection Sort:.Selection Sort is a sorting algorithm that works by repeatedly finding the minimum element from the unsorted part of the list and putting it at the beginning. #Java #Programming #Coding #DSA #30daysofjava #learninginpublic
Tweet media one
1
0
1
@WasimEverylogy
Wasim Sheikh
2 years
Day 22 . Array topic completed. Solved some problems - buy and sell stocks. Learned it properly. Need to do more practice now. #java #array #30daysofjava #dsa #algorithem
Tweet media one
Tweet media two
1
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 21. Trapping Rainwater DSA problem solved. This is my first ever DSA problem. I watched the tutorial and understand the logic behind this problem. Finally DSA journey started. 😊. #java #dsa #30daysofjava #90daysofDSA #Bulidinpublic
Tweet media one
Tweet media two
Tweet media three
Tweet media four
1
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 25. Part 5-. πŸ“™ Counting Sort:.Counting Sort is a non-comparative sorting algorithm that sorts elements based on their frequency of occurrence in the input data. #Java #Programming #Coding #DSA #30daysofjava #learninginpublic #DSAPractice
Tweet media one
1
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 14. Today learn the Scope and new advance patterns. As well as revised the old topic. Most of the advanced patterns are covered. Very excited to get started with Arrays (next topic). #DSA #JAVA #30DAYSOFJAVA #DAY14
Tweet media one
Tweet media two
1
0
0
@WasimEverylogy
Wasim Sheikh
2 years
Day 27.Method practice and revision - .▢️ WAP to calculate the sum of all the digit in the integer. ▢️ write a java program to check if a number is a palindrome in Java? (121 is a palindrome number). #dsa #java #30daysofjava #learinginpublic #buildinginpublic
Tweet media one
Tweet media two
1
0
1
@Iadi96Singh
Aditya singh
28 days
🧡 Day 28/30 – Debugging in Java 🐞. Today I explored the art of finding & fixing bugs πŸ‘¨β€πŸ’». πŸ“ Breakpoints & step-by-step tracing in IDE. πŸ› οΈ Tips: Reproduce bugs, read stack traces, use watchpoints.#30DaysOfJava #Java #Debugging #LearnInPublic
Tweet media one
Tweet media two
0
0
1
@Iadi96Singh
Aditya singh
1 month
🧡 Day 20/30 – Java Threads (Intro) in #30DaysOfJava.πŸš€ Threads = lightweight processes for tasks!.2 ways to create: βœ… Extend Thread βœ… Implement Runnable .🎯 Lifecycle: New β†’ Runnable β†’ Running β†’ Blocked/Waiting β†’ Terminated.#Java #Multithreading #LearnInPublic
Tweet media one
Tweet media two
Tweet media three
0
0
3
@Iadi96Singh
Aditya singh
27 days
🧡 Day 29/30 – Java Best Practices βœ…. Writing code is easy. Writing clean & efficient code? That’s where pros shine πŸ’‘.πŸ”Ή Meaningful names.πŸ”Ή Small, modular methods.πŸ”Ή Use try-catch wisely.πŸ”Ή Comment the β€œwhy”, not β€œwhat”.πŸ”Ή Use collections & memory smartly.#Java #30DaysOfJava
Tweet media one
Tweet media two
0
0
2
@Iadi96Singh
Aditya singh
1 month
🧡Day 14 of #30DaysOfJava. Today I covered . πŸ“·Static Keyword in JAVA .It"s Use as Method, variable and blocks . Here's what I learned πŸ“·. #LearnInPublic
Tweet media one
Tweet media two
0
0
3
@Iadi96Singh
Aditya singh
1 month
🧡 Day 22/30 – #30daysofJava. πŸš€ Lambda = cleaner, functional Java!. πŸ”Ή (a, b) -> a + b.πŸ”Ή Works with Functional Interfaces.πŸ”Ή Used in Streams, Collections, Callbacks.πŸ”Ή Improves readability & reduces boilerplate. #Java #Lambda #30DaysOfJava #100DaysOfCode #LearnInPublic
Tweet media one
Tweet media two
0
0
3