Posts from Java

To determine whether string is rotated or not in java (without using loops)

By Sameer

In this tutorial, we will learn how to determine whether the string is one of its rotation of the given string in Java. For example, if the given string is ABCD then its circular r.... Read More

Moving a file from One Directory to Another using Java

By Akash Tripathi

Hey Folks, You must have moved your files from one directory to another number of times, but have you done it with the help of Java? If not, then let’s learn it today. Here I.... Read More

How to Implement Queue in Java

By Utkarsh Tiwari

Hey folks, I am up with another tutorial. In this tutorial, we will learn how to implement a queue using Java. A queue has a concept of two pointers. One at the front element and o.... Read More

Calculating the area of a parallelogram in Java

By Tanisha Saxena

In this tutorial, we will see how to calculate the area of parallelogram in Java. A parallelogram is a four-sided plane rectilinear figure which has opposite sides parallel. In Euc.... Read More

Implement Linked List in Java using Node class

By Utkarsh Tiwari

How to implement a linked list in java using node class Hey Folks, I am back another tutorial of data structure. In this tutorial, we will learn how to implement a linked list in j.... Read More

Counting Number of Files in a Directory in Java

By Akash Tripathi

Hello Friends, Today we’ll be learning to count the number of files in a certain directory using Java. Before beginning, we need to get familiar few methods for the same. The.... Read More

Calculating Area of a Trapezoid using Java

By Tanisha Saxena

In this tutorial, we will learn how to calculate the area of a trapezoid in Java programming language. A trapezoid is a 4-sided flat shape having straight sides that has a pair of .... Read More

Binary Search to find element in array using Java

By Utkarsh Tiwari

This tutorial will focus on, How to find an element in an array using Binary Search in Java Hey folks, I am back with another tutorial for you. In this tutorial, we will learn how .... Read More

Related Posts