Sowmiyanoobcoderr.hashnode.dev·Dec 16, 2024Day 2: Kanye Meets Java—Let’s CodeSession 1: Input, Output, and Decisions (Kanye Style) Input and Output In Java, input is like Kanye asking his fans for their opinions—it's the data or feedback the program gets from the user, usually with the help of the Scanner class. Output (Kanye...3 likes·33 reads#KanyeStyle
Vaishnavi Dwivedivaishd.hashnode.dev·Nov 11, 2024Patterns unravelledCode this pattern. This is a question I have never heard in any of my interviews, but it is the starting point of DSA. Why? The main reason is that it helps us better understand loops and conditions. Without this, we can't build optimal logic or unde...Learn DSA - JAVACodingPatterns
Vaishnavi Dwivedivaishd.hashnode.dev·Oct 9, 2024Chapter 2: Basics in JavaIn Java, understanding the basic building blocks such as data types is fundamental to developing algorithms. Let's dive into the two main categories of data types in Java: Primitive and Non-Primitive. 1. Data Types Java is a strongly-typed language, ...Learn DSA - JAVAControlFlow
Akash Dasakashdas7781.hashnode.dev·Sep 20, 2024Mastering Java Classes and Objects: A Comprehensive Beginner's GuideObject-Oriented Programming (OOP) is a powerful paradigm that helps developers create flexible, modular, and reusable code.Before diving into OOP, let’s first understand what an object is, how it behaves, and get a brief description of a class. What ...java object
Vaishnavi Dwivedivaishd.hashnode.dev·Sep 16, 2024What is JAVA and why DSAHave you ever thought about why we solve certain questions a particular way? And why, when we submit some questions using simple loops on LeetCode, we get the response "Time Limit Exceeded"? The word you're looking for is time complexity. You've prob...Learn DSA - JAVAJava Programming
Akash Dasakashdas7781.hashnode.dev·Sep 12, 2024Understanding Java Operators with Real-World Examples :Just like in life, in Java, the right operator at the right time makes all the difference. Operators in Java are one of the fundamental building blocks for any program. They allow us to perform various operations on variables and values, helping us ...Java
Faizan Firdousifaizancodes.hashnode.dev·Aug 1, 2024Finding the Quadrant of a Point in Java𝗜𝗻 𝗝𝗔𝗩𝗔 𝗳𝗼𝘂𝗻𝗱 𝘁𝗵𝗶𝘀 𝗽𝗿𝗼𝗯𝗹𝗲𝗺 𝗶𝗻𝘁𝗲𝗿𝗲𝘀𝘁𝗶𝗻𝗴 𝘁𝗼 𝗯𝗲 𝘀𝗼𝗹𝘃𝗲𝗱 ,so i did and learnt something- 𝗣𝗿𝗼𝗯𝗹𝗲𝗺:The task was to identify whether the coordinate given by the user ,falls in the 1st, 2nd, 3rd, or 4th quad...Java
Navneet KarnaniforMandrakeTech Blogblog.mandraketech.in·Dec 27, 2023[HttpServer series] Who uses Java anymore ?( Note: You can read the full series at: https://blog.mandraketech.in/series/java-http-server ) It was only recently, after the release of Java 21, that I was re-energised about the language and its potential. To give you a background, I started prog...70 readsProject No-Web-Framework-No-Annotations using JavaJava
EVENBOOKSevenbooks.hashnode.dev·Jul 13, 2023Java is no party pooperLarning Java should be enjoyable, but it should also be challenging. If you're not having a good time, you're less likely to stick with it. However, if you find ways to make learning Java fun, you'll be more likely to succeed. Here are some tips for ...Hobbies & LeisureLearn Java
Suryansh Grsuryanshdsa.hashnode.dev·Jun 28, 2023First ProgramEvery file that ends with .java is a class. The public class in the file can be only the name of the file or public class has the same name as of the file public ---> everyone can access public static void main(String[] args){} this is the main funct...type casting