exam questions

Exam 1z0-148 All Questions

View all questions & answers for the 1z0-148 exam

Exam 1z0-148 topic 1 question 63 discussion

Actual exam question from Oracle's 1z0-148
Question #: 63
Topic #: 1
[All 1z0-148 Questions]

Examine this code:
CREATE TYPE list_typ IS TABLE OF NUMBER;
/

DECLARE -
l_list list_typ := list_typ ();
Which two executable sections will display the message TRUE?

  • A. BEGIN IF l_list.LIMIT IS NOT NULL THEN DBMS_OUTPUT.PUT_LINE (TRUE); END IF; END;
  • B. BEGIN l_list.EXTEND; IF l_list.PRIOR (1_list.FIRST) IS NULL THEN DBMS_OUTPUT.PUT_LINE (TRUE); END IF; END;
  • C. BEGIN l_list.EXTEND; IF l_list IS EMPTY THEN DBMS_OUTPUT.PUT_LINE (TRUE); END IF; END;
  • D. BEGIN IF l_list.FIRST IS NULL THEN DBMS_OUTPUT.PUT_LINE (TRUE); END IF; END;
  • E. BEGIN IF l_list.FIRST =1 THEN DBMS_OUTPUT.PUT_LINE (TRUE); END IF;
Show Suggested Answer Hide Answer
Suggested Answer: BE 🗳️

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
Tinamoran
Highly Voted 5 years, 7 months ago
B and D are the right answer
upvoted 10 times
gusa
4 years, 9 months ago
Confirm, I try it and B and D are correct answers
upvoted 3 times
...
...
chrishillinger
Most Recent 2 years, 9 months ago
Selected Answer: BD
DB ist correct
upvoted 1 times
...
CosminCof
4 years, 7 months ago
Yes, B and D
upvoted 2 times
...
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.

SaveCancel
Loading ...