If a variable is declared as follows, what are the results? v_fixed_amount CONSTANT NUMBER;
_____ A NUMBER variable called v_fixed_amount has been declared (it will remain as a constant once initialized). _____ A NUMBER variable called v_fixed_amount has been declared (it will remain as null). _____ An error message will result because constant initialization must be done in the executable section of the block. _____ An error message will result because the declaration for the CONSTANT is missing an assignment to a NUMBER. |