Find Greatest among three numbers in Java

Find The Largest Of Three Numbers in java

In this tutorial you will learn how to write a program in C to find largest of three numbers. Determining the greatest among three numbers is a common task that often arises in various applications and algorithms. Whether you’re working on a simple console application or a complex software system, finding maximum value among three … Read more

Palindrome Program in Java using Iteration

Palindrome Program Using Iteration in java

In this tutorial you will learn how to write a program in Java to check a given number is palindrome or not using iteration. Before moving directly on the writing the program Read this: What is Palindrome Number? Write a palindrome program in C. How our Java program will behave? Our program will take a … Read more

Fibonacci Series Program in Java using Recursion

Fibonacci Series Program Using Recursion java

In this tutorial we are going to learn how to print Fibonacci series in java program using recursion. Read this: What is Fibonacci Series? Fibonacci series program in C using recursion. How this Java program will behave? Its Logic is different from Fibonacci series program in Java using iteration. Here we have a function named … Read more

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