In this post I am going to describe the very basic PHP Program which tell us how to swap two numbers without using third variable. This program is very commonly asked in the interviews 7 out of 10 times this type of question are asked in the interviews
In this post I am going to describe the PHP Program which tell us how to find Factorial of a number .Factorial of a number is the product of an integer and all the integers below it eg Factorial of 4 is 4*3*2*1=24 24 is the Factorial
In this post I am going to describe the basic PHP Program which tell us weather the given number is Even or Odd. The number which is completely divisible by 2 are known to be Even and rest of all are known to be even.
In this post I am going to describe the PHP Program which tell us how to find HCF. HCF stands for Highest Common Factor . Highest Common Factor(HCF) of two or more numbers is the greatest number which divides each of them.
In this post I am going to describe the PHP Program which tell us how to find LCM. LCM stands for Least common multiple . LCM is the smallest number that is a multiple of all the numbers
In this post I am going to describe the PHP Program which tell us about how to find Fibonacci Series. Fibonacci Series is a series of numbers in which each number ( Fibonacci number ) is the sum of the two preceding numbers. The simplest is the series 1,
In this post I am going to describe the basic PHP Program which tell us about how to find the given number is prime number or not . Prime number are those number which are divisible by 1 and themselves. In this program we are using for loop, if
In this post I am describing the PHP Program which tell us about how to find prime number Series. Prime number are those number which are divisible by 1 and themselves. In this program we are using for loop, if condition and break statement.