Posts from Java

Jagged Array in Java

By Shubham Loya

Today, in this tutorial, you get to know about Jagged array and how to create one in Java. A jagged array is basically an array of arrays. Jagged array may consist of various rows .... Read More

User-defined Custom Exception in Java

By Debdeep Das

Exceptions are runtime-errors that terminate a program abnormally. These are generally events that terminate the ongoing process. All Exceptions are child classes of the ThrowableÂ.... Read More

args.length() in Java

By Debdeep Das

Before we start off, it’s very important for us to understand what are command-line arguments. So in this tutorial, we are going to understand what are Command Line Arguments.... Read More

Online Voting System GUI in Java using Swing

By Debdeep Das

This blog presents a tutorial on how to make an Online Voting System using Java. The project uses Java Swing. Java Swing is an API that provides measures to create Java GUI applica.... Read More

Check whether an element is present in an array or not in Java

By Veda Charitha

In this tutorial, we are going to check whether an element is present in an array or not in Java. To do this, various search techniques can be implemented like linear search (one o.... Read More

How to generate random numbers using a seed in Java

By Barshan Paul

In this problem, we will learn how to generate random numbers using a seed in Java. So what are random numbers? Some numbers have no correct sequence on how it is being produced an.... Read More

Find k-th missing element in increasing sequence in Java

By Dishi Jain

In this tutorial, we will see how to find kth missing element in an increasing sequence that is not present in a given sequence in Java. Finding the kth missing element in an incre.... Read More

How to Maximize and Minimize Jframe Window

By Saruque Ahamed Mollick

In this tutorial, we will learn how to maximize and minimize JFrame window. We will also see how to do this with button clicks. To maximize a JFrame window, you can use the setExte.... Read More

Related Posts