Posts by Debdeep Das

Author Biographical Info: Not available

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

How to count the number of words in a string in Java

By Debdeep Das

This tutorial consists of two ways to count the number of words in a string in Java. Using a String Tokenizer class. Using the CommandLine itself. But before that check this simpl.... Read More

An Object Oriented Approach of using Math.addExact( ) method in Java

By Debdeep Das

This is a tutorial on an object-oriented approach to understand and implement the use of Math.addExact( ) method in Java.  Math.addExact( ) is a method which returns the sum of th.... Read More

Related Posts