Posts from Java

Check If A String Is Palindrome Or Not Ignoring The Case Of Characters In Java

By Saruque Ahamed Mollick

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

A Java Program to Find Duplicate Values in an Array

By Saruque Ahamed Mollick

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

FizzBuzz Problem In Java- A java code to solve FizzBuzz problem

By Saruque Ahamed Mollick

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

How to replace String Characters In Java Using replace() Method?

By Saruque Ahamed Mollick

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

Guess The Number Game Using Java with Source Code

By Saruque Ahamed Mollick

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

Make A Multiplication Table in Java with a specific range

By Saruque Ahamed Mollick

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

Java Program to Print Fibonacci Series

Java Program to Print Fibonacci Series

By Saruque Ahamed Mollick | October 15, 2017

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

Difference Between While And Do While Loop In java

By Faruque Ahamed Mollick

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

Related Posts