static int retIntExc() throws Exception{ int result = 1; try { result = 2; throw new IOException(\"Exception rised.\"); } catch (ArrayInd
It will return 2 because
2
finally always execute
finally