Write a PL/SQL program to find odd or even number.
1
Expert's answer
2021-09-12T00:12:54-0400
DECLARE
num NUMBER :=32;
BEGIN
IF MOD(num, 2) = 0 THEN
dbms_output.Put_line('Number is Even');
ELSE
dbms_output.Put_line('Number is Odd');
END IF;
END;
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment