Question: What would be the output of the code below Declare v_start Number(3):=10; Begin if mod(v_start,5)>2 then DBMS_Output.Put_Line(v_start+2); elsif mod(v_start,4)>1 DBMS_Output.Put_Line(v_start-2); end if; End; 10 12
What would be the output of the code below
Declare
v_start Number(3):=10;
Begin
if mod(v_start,5)>2 then
DBMS_Output.Put_Line(v_start+2);
elsif mod(v_start,4)>1
DBMS_Output.Put_Line(v_start-2);
end if;
End;
10
12
8
None of the above
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
