True/False
The syntax of the following code fragment is correct:
IF rec_order.state = 'VA' THEN
lv_tax_num := rec_order.sub * .06;
ELSEIF rec_order.state = 'ME' THEN
lv_tax_num := rec_order.sub * .05;
ELSE
lv_tax_num := rec_order.sub * .04;
END IF
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q71: A(n) _ variable can hold only a
Q72: The BEGIN section of a PL/SQL block
Q73: The CASE statement begins with the keyword
Q74: By indicating a numeric range, the _
Q75: The _ section of the PL/SQL block
Q77: The<u> EXCEPTION </u>section of a PL/SQL block
Q78: Which of the following evaluates conditions and
Q79: The _ section of a PL/SQL block
Q80: Which of the following code fragments would
Q81: Which of the following PL/SQL blocks requires