0 / 60 seg.

What will the following code output?

String text = "Java is fun";
Pattern pattern = Pattern.compile("\\bis\\b");
Matcher matcher = pattern.matcher(text);
System.out.println(matcher.find());