Java Numeral Converter in Java with GUI (app) In this article, we will learn how to develop an application for Numerical Converter to convert one positional numerals into another with GUI.
Java Student Management System in Java In this article, we will discuss the implementation of a student database GUI using JAVA and Swing. Java is a popular programming language, while Swing is a user interface toolkit for creating graphical user interfaces (GUI) in Java applications.
Java Maze Generator and Solver in Java In this article, we will develop a Java program that generates a Maze and solves it using Depth-First Search with help of Backtracking. This is a strong profile for SDE portfolio.
Java Timer Console Application in Java In this article, we will understand how to develop a Timer Console Application which simulates a countdown timer with a Progress Bar and a countdown timer display.
Java Multi-thread Java program to find all prime numbers < N In this article, we will develop a multithreaded java program to find all prime numbers below than N. We will use Sieve of Eratosthenes algorithm to find prime numbers and it will be run in parallel.
Java Calendar Application in Java This article will guide you through the process of creating a simple calendar application in Java. The article will cover the basics of working with the Calendar class, how to format the output, and how to highlight the current date.
Java Spell Checker Console Application in Java In this article, we will develop a spell checker application which checks for spelling mistakes in our input and also suggest possible corrections. We will implement this tool in Java Programming Language.
Algorithms Merge K Sorted Array In this article, we have explored 3 approaches to merge K sorted arrays such that the resulting array is sorted as well. This involve the concept of Min / Max Heap.
Algorithms Time & Space Complexity of Tower of Hanoi Problem In this article, we will discuss about time and space complexities of Tower of Hanoi problem for different cases like worst case, best case and average case.
Algorithms Largest sub-array with equal number of 1 and 0 In this article, we have explored 3 different approaches to find the Largest sub-array with equal number of 1 and 0. This involve the concept of Hash Map/ Set and Prefix Sum.
Algorithms Advantages and Disadvantages of Huffman Coding In this article, we will discuss about 5 advantages and 5 disadvantages of Huffman Coding.