// "Move 'return' closer to computation of the value of 'n'" "true" class T { int f(boolean b) { int n = -1; try { n = 1; if (b) { throw new RuntimeException(); } } catch (RuntimeException e) { n = 2; } re<caret>turn n; } }