Posts from Java

How to swap objects in Java

By Priya Bansal

In this tutorial, we’ll learn how to swap objects in Java. Swap refers to the exchange of previously assigned values. It has different approaches, such as: using a temporary .... Read More

Types of References in Java

By Mainak Halder

Hello, learners Today I’m going to discuss the types of references present in Java. Java has mainly four types of references. 1.Strong references 2.Weak references 3.Soft ref.... Read More

Console readPassword() in Java with examples

By Siddharth Raja

In this tutorial, we will see the use of readPassword() method in Java along with examples. The readPassword() method belongs to the Console class in Java. It allows the user to ty.... Read More

Java program to find Nth pure number

By Abhishek Kaushik

Hello Friends, In this tutorial, we will look at what is Nth pure number then we will try to write code for Nth pure number in Java. Finding Nth pure number in Java First of all, w.... Read More

How to convert a HashMap to TreeMap in Java

By Shivam Purohit

Hello programmers, in this tutorial you will learn how to convert a HashMap to TreeMap in Java. In this tutorial, you will be mainly using the putAll() method for converting and st.... Read More

Java Program to print a given matrix in spiral form

By Abhishek Kaushik

Hello Friends, In this tutorial, we will look at how to print a given matrix in spiral form using Java program, a matrix of size m * n is taken (m is the number of rows and n is th.... Read More

Fermat Factorization method in Java

By Alok Sinha

Here we will see about Fermat Factorization Method in Java. Fermat Factorization method is based on the evaluation of an odd integer value as it differs from two squares. This was .... Read More

Find Minimum number of subsets with distinct elements in Java

By Deepanjan Bose

Hello everyone, in this article, I will show you guys how to find minimum number of subsets with distinct elements in Java with simple examples. I have shown the source code with o.... Read More

Related Posts