Posts from Java

String Palindrome in Java

By Akash Tripathi

Today we will see a program where we will find String palindrome in Java programming language. We have already learned how to find palindrome of a number in one of my Java article..... Read More

Fetch data from Excel file in Java

By Naga jyothi

Hello Everyone! Here we will learn about how to read an excel sheet or fetch data from excel file in Java. In order to read data from an excel sheet, we need to import the required.... Read More

How To Check The Internet Connection In Java?

By Shubham Kumar

In this instructional exercise, we will figure out how to check our PC having an internet connection or not using simple Java code. If you want to ping a particular URL or website,.... Read More

Decimal to Binary conversion in JAVA

By snormy

This tutorial would help in learning the following: (Decimal to binary conversion in Java) Conversion of numbers from decimal-system (using 0 to 9) to binary-system (only 1 and 0) .... Read More

Calculate the arc length of an angle in Java

By Tanisha Saxena

In this tutorial, we will see how to calculate the arc length for a given angle in Java. Mathematically, arc length is calculated as follows: The length of an arc is equal to the c.... Read More

Check whether String is Unique or not in Java (Optimized)

By Sameer

In this tutorial, we will learn how to check whether the string is Unique or not in Java. Problem Statement: Check whether the given string is unique or not i.e the alphabets in t.... Read More

Java Program to Left Rotate an Array

By Tanisha Saxena

In this tutorial, we will learn how to left rotate a given array in java programming language. So let’s start learning, left rotation of an array in Java. We need to rotate t.... Read More

How to find if Linked List contains cycle in Java

By Tanisha Saxena

In this tutorial, we will see how to check if the given linked list contains a cycle or loop in java. A linked list is a data structure, it has a collection of nodes. Each node has.... Read More

Related Posts