Playing with factorials
 
 Have you ever gone through factorial dependent questions in aptitude? Many problems which deal with factorials seems to be too complex and most of us may skip those questions even before a single try.so how can we stop these problems irritating or confusing us? well a few simple procedures to solve all such problems are given here     Before starting the procedures, let us learn about basics...   Factorial(!): Product of an integer with all the integers below it.   e.g: 4! = 4*3*2*1     The Highest power of a prime number 'P' (P is prime) in factorial of another number 'N' is     N/P + N /P^2 + N/P^3 + .....  
