Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Java
hard
Java
if switch loops
Single-choice MCQ
What does this code throw?
static int f(int n) { return f(n - 1); }\nf(5);