alter session set plsql_warnings = 'enable:all';
create or replace function compare_numbers(p1 number, p2 number)
return number authid current_user
is
begin
if p1 > p2 then
return 1;
elsif p1 < p2 then
return -1;
else
return 0;
end if;
return 99;
end;
Function COMPARE_NUMBERS compilado
LINE/COL ERROR
--------- -------------------------------------------------------------
14/5 PLW-06002: Código inaccesible
E also a correct answer since in ENABLE:ALL mode two warnings will be generated. One severe warning and one informational warning.
upvoted 1 times
...
This section is not available anymore. Please use the main Exam Page.1z0-148 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
orakell
Highly Voted 5 years, 6 months agochrishillinger
Most Recent 2 years, 9 months agoCosminCof
4 years, 6 months agoGuyFabrice
4 years, 6 months agojcamt
4 years, 7 months agogusa
4 years, 9 months agoCariplo
5 years, 1 month agokahabe59
5 years, 2 months agoDmitryPDN
5 years, 3 months ago