In this post, we are going to learn if a string is a palindrome or not ignoring the case of the characters used to build the string. What is a palindrome word? A word is said to be.... Read More
In this post, we are going to write a program to find the duplicate values in an array in Java. Suppose an array is holding these values {1,4,5,3,1,8,7,5,7} This program will print.... Read More
Before going to solve this problem let us know about the problem How to replace String Characters In Java Using replace() Method? FizzBuzz Problem The FizzBuzz is an ancient word g.... Read More
Now we are going to see the easiest way to replace characters of a string with our desired character in java using replace() method. Below is the example of a String which we are g.... Read More
In this Java tutorial, we will learn to make an interesting game in Java. This game is basically known as guess the number game. So be ready to learn how to create Guess the number.... Read More
In this post, I’m going to write a java program where the user can give the input which is going to be multiplied and user can also give the range as an input. That means cre.... Read More
So, you are here to find a suitable program for you to display the Fibonacci series. What is Fibonacci series? Fibonacci Series is one kind of series in mathematics. It is also known as Fibonacci sequence. The sequence looks like below : 0,1,1,2,3,5,8,13,21,34,55,89,144,…… and so on If you try to understand the protocol of this […] Read More
Do while and while states may look similar and also the functionality of this loop may look similar, but there is the difference between do while and while statement. In this tutor.... Read More