Loop_Practise_Que_05

Home / Java Practice Question / Loop_Practise_Que_05

Loop_Practise_Que_05


WAP to check a given Number is even or not....

Program :-

public class Loop{
   public static boolean isEven(int num)
 {
return num%2==0;
}
}