From my point of view it should be "134234". After the first invocation,it's "134",because the "finally" block always runs. And line 23 adds "234" to the string. Please correct me if any mistake!! [ December 18, 2005: Message edited by: bibby young ]
The output would be "13423". The "4" at last will NOT be included, because of the "return" statement in the catch block.Only finally block will be executed after "return".Please check.