PL/SQL Program to Check Number is Odd or Even
Here you will get pl/sql program to check number is odd or even. A number is even if it is completely divisible by 2 otherwise it is odd. PL/SQL Program to Check Number is Odd or Even declare n number:=&n; begin if mod(n,2)=0 then dbms_output.put_line(‘number is even’); else dbms_output.put_line(‘number is odd’); end if; end; …