Prajjwal Pratap Singhprajjwaltechblog.hashnode.dev·Dec 4, 2023Exploring the Core of Java: A Comprehensive Guide ( PART - 1 )Introduction: Java, a programming language known for its portability, versatility, and robustness, has been a cornerstone in the world of software development for decades. At the heart of Java lies "Core Java" – the foundational elements that form th...Discuss·28 readsJava
Sudarshan Doiphodesudarshandoiphode.hashnode.dev·Nov 24, 2023"isBlank() vs. isEmpty() – Which One Should You Choose?"Introduction If you are a Java developer, then definitely you have used String class and its methods in your career. But some of you might have also used one of the isBlank or isEmpty methods and some of you always get confused about choosing one of ...Discuss·76 readsString class in java
Vitthal Korvanvitthal-korvan.hashnode.dev·Nov 24, 2023Java Patterns - Level 3Pattern Programs in Java Based on: Numeric Patterns Character Patterns Star Patterns in Java Mixed patterns Patter Program - level 3 Pattern Program 48:: Pyramid Program * * * * * * * * * * * * * * * import java.util.Scanner; pub...Discuss·90 readsJava
Vitthal Korvanvitthal-korvan.hashnode.dev·Nov 24, 2023Java Patterns - Level 2Pattern Programs in Java Based on: Numeric Patterns Character Patterns Star Patterns in Java Mixed patterns Pattern Programs - level 2 Pattern Program 27:: A BB CCC DDDD EEEEE import java.util.Scanner; public class Patterns { pub...Discuss·95 readsJava
Vitthal Korvanvitthal-korvan.hashnode.dev·Nov 23, 2023Java Patterns - Level 1Pattern Programs in Java Based on: Numeric Patterns Character Patterns Star Patterns in Java Mixed patterns Pattern Programs - Level 1 Pattern Program 1:: Enter the number: 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 import java.util.S...Discuss·93 readsJava
Dayo Osborneosbornedayo.hashnode.dev·Nov 21, 2023Introduction to JavaWelcome to the exciting world of Java programming! If you're eager to write your first Java code, you're in the right place. Before diving into the code, let's set up our development environment. Setting Up the Environment You need a place to write y...Discusstechnology
lokosmanlokos-write.hashnode.dev·Oct 16, 2023Complete Guide to Java Collections Framework: Easy to UnderstandDive into the expansive world of Java, where the Java Collections Framework (JCF) stands as a towering beacon. Think of data management as the heartbeat of top-notch software development. By mastering the nuances of the JCF, developers can supercharg...DiscussJava
Harshit Pundirblog.harshitpundir.co·Oct 9, 2023How does Java Execute?The java file [ .java] file which is in human-readable format goes through the compiler and now it becomes the class file [.class ] also known as byte code. don,t worry important: this [.class] file can easily run on any OS whether it's Linux, Mac, o...DiscussJava
Harshit Pundirblog.harshitpundir.co·Oct 9, 2023How to Install & Get Started with Java!Some PCs might have Java already installed. To check if you have Java installed on a Windows PC, search in the start bar for Java or type the following in Command Prompt (cmd.exe): If Java is installed, you will see something like this (depending on...DiscussJava
Karunkarun.hashnode.dev·Sep 21, 2023SortedMap Interface in JavaIn Java, the SortedMap interface is part of the Java Collections Framework and extends the Map interface. It represents a map that maintains its entries in a sorted order based on the keys. Unlike the standard Map interface, which does not guarantee ...Discuss·4 likesLearning Java from Basic to AdvancedJava