Posts from Java

How to calculate age from date of birth in Java

By Krishna Lakhi

Hey Everyone! In this tutorial, we will learn how to calculate age from Date of Birth in Java provided by the user as input. For this tutorial please consider using Java version 8 .... Read More

Java program to display number in words

By Shakshi Parekh

In this context, we are going to learn how to write a program in Java to display the number in words. Input: If user initializes n=24 it will print Twenty Four and if n=268 Two Six.... Read More

Finding out a Kaprekar number in Java

By Kollabathula Preetham

Hey guys! The topic for today is finding out if a number is a Kaprekar number or not in Java. So what is a Kaprekar number? Kaprekar Number in Java When you square a number, then s.... Read More

Implement Caesar Cipher in Java

By Kollabathula Preetham

Hey guys! The topic for today is how to implement Caesar Cipher in Java. So we will learn how to encode our message using Caesar Cipher algorithm which is both simplest and easiest.... Read More

Saddleback search algorithm in Java

By Anubhav Srivastava

Hi coders, this tutorial is focused on Saddleback search algorithm in Java. Many times you have been asked for the searching of an element in various data structures. If we are ask.... Read More

Java program to find strong number in an array

By Shakshi Parekh

This tutorial will guide you to learn how to find strong number in an array in Java Java is also a high programming level language and also easy to learn. An array is a data type i.... Read More

How to merge two linked lists in Java

By Barshan Paul

We will learn how to merge two Linked Lists in Java programming language with an example, algorithm, and a Java program. In this program, we will merge two Linked List in an iterat.... Read More

Program to find if a LinkedList is a palindrome or not in Java ?

By Darshna Patil

Hi there! today we are going to learn if a LinkedList is a palindrome or not in Java. We all know that a string or number is palindrome if when reads backwards it produces the same.... Read More

Related Posts