Question from the Java and Craftsmanship test

What is the output of the following code? ```java try { return 42; } finally { return 1337; } ```

Medium
try {
  return 42;
} finally {
  return 1337;
}

This code returns

Author: Clément DevosStatus: PublishedQuestion passed 220 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!