Posts from Java

auto-boxing and unboxing in Java

By Yanamandra Valli

In this tutorial, we will learn how to do auto-boxing and unboxing in java. Further, we will be discussing the advantages of auto-boxing and unboxing and let us see how the auto-bo.... Read More

Print all Multiplicative Primes ≤ N in Java

By Shivank Maheshwari

Hi folks, today we will learn how to Print all Multiplicative Primes ≤ N in java. We can assume you know about prime numbers. If you don’t check this: Java Program To Chec.... Read More

Modular multiplicative inverse in Java

By Shivank Maheshwari

Hi, today we will see how to compute Modular multiplicative inverse in Java. first of all, we should know what it is and where it is used. So, Modular multiplicative inverse of an .... Read More

how to evaluate Modular Exponentiation in Java

By Shivank Maheshwari

Hi, today we will learn how to evaluate Modular Exponentiation in Java. This tutorial will help you to learn about some built-in methods that we will use here. First of all, do you.... Read More

Plot the negative of an image in Java

By Shivank Maheshwari

Today, we will learn how to plot the negative of an image in Java. First of all, we have to know what do we mean by the negative of an image. So Negatives image means brighter pixe.... Read More

Product of array elements except for the current index in Java

By Darshna Patil

Hi coders! today we are going to see an Arraylist program where we have to take an array as input and print the product of all elements except the element of current index. This qu.... Read More

How to Print the middle node of a linked list using java

By Anubhav Srivastava

Hi, coders! Most of you people are familiar with the linked list data structure but did you people ever tried to print the middle node of a singly linked list in Java, if not I am .... Read More

Conversion of String to Enum in Java

By Krishna Lakhi

Hey Everyone! In this article, we will learn how to convert a string to an enum data type in Java. Enum in Java Enum is a special data type in Java in which it’s field consis.... Read More

Related Posts