1) | When an exception is raised in the declaration section of the inner block, it propagates to the_____ exception-handling section of this block. _____ exception-handling section of the enclosing (outer) block. _____ host environment and causes a syntax error. |
2) | When an exception is raised in the declaration section of the outer block, it propagates to the_____ exception-handling section of this block. _____ host environment and causes a syntax error. |
3) | When an exception is raised in the executable section of the inner block, it propagates to the_____ exception-handling section of this block. _____ exception-handling section of the enclosing block. _____ host environment and causes a syntax error. |
4) | When an exception is re-raised in the inner block, control is transferred to the_____ exception-handling section of this block. _____ exception-handling section of the enclosing block. |
5) | To re-raise an exception, one must issue which of the following statements?_____ RAISE exception_name _____ RAISE _____ There is no need to issue any statements. |