Fibonacci series program in Java using iteration

Fibonacci Series Program Using Iteration in java

In this tutorial we are going to learn how to print Fibonacci series in Java program using iterative method. In this series number of elements of the series is depends upon the input of users. Program will print n number of elements in a series which is given by the user as a input. Read … Read more

Prime Number program in java

Prime Number Program in java

In this tutorial we are going to learn how to write a program to check whether a given integer number is prime number or not in Java programming language. What is Prime Number? A prime number is a natural number that is greater than 1. It cannot be formed by multiplying two smaller natural numbers. … Read more

Armstrong Number Program in Java

Armstrong Number Program in Java

In this tutorial we will learn writing Armstrong number program in Java to check a given input number is Armstrong or not? So before moving directly on the writing program Lets know about Armstrong number: Click Here:  What is Armstrong Number? Armstrong program in C. Program 1: Armstrong Program in Java This is a traditional … Read more

Program to reverse a number in java with explanation

Program To Reverse A Number in java

In this tutorial we are going to learn how to write a program to reverse the digits of a given number in Java programming language. So Lets  know what we are going to achieve in this program before moving on writing program. Suppose if someone given input to the program like 456789. After performing reverse … Read more

Java Program to count occurrences of given character in string

Count Occurrences Of Given Character In String in java

In this tutorial we will learn how to write program in Java to count occurrence of character in a String. Also Read this:  C program to count the occurrence of a character in String. How this Java program will behave? This Java program will take a string and a character as an input. And it … Read more

Java Program to remove a given character from string

Remove A Given Character From String in java

In this tutorial you will learn writing program for how to remove a character from a string in java. Before start writing this program you should know how to work with String and character in Java. Also Read This: C program to remove a character from String. How this Java program will behave? This program … Read more