What will be the output of the following program?
class Factorial
{
public static void main(String s[])
{
int number = 5;
int factorial = 1;
for(int i = 2; i <= number; i++ )
{
factorial *= number;
}
System.out.println("Factorial of 5 is " + factorial);
}
}