=== Program === function main() { var x = 1; try { x = x + 1; throw x; x = x/0;} // division by zero unreachable catch(y) {x = y+1;} print(x,"\n"); } // 3 === Output === Result: null-value Output Entity: standard-out 3,"\n"