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

Python Program to swap two number using third variable

python program to Swap Two Number Using Third Variable

In this tutorial you will learn swapping of two numbers using third variable Python in  programming language. This is also a most important program which commonly asked in interview. Before directly moving on writing the program lets understand what is our aim to achieve in this program. Basically Swapping of number means  Suppose variable a … Read more