All quizzes
JavaChallengeMultiple choice

What value does m() return?

static int m() {
    try {
        return 1;
    } finally {
        return 2;
    }
}