Review of Pascal

In Pascal, when an exception is raised in “try” block, then compiler will skip the rest of statements in “try” block then execute statements in finally block which ignore the exception. “Try-except” statement and “try-finally” statement can be nested, but unlike Java, a “try” block must be followed by either an “except ... ................
................