Practice Questions

Which statement about String objects is true?

What is the output of this code? var list = List.of(1, 2, 3); list.stream().filter(x -> x > 1).forEach(System.out::print);

Which interface is a functional interface?

What happens if an exception is thrown inside a try with resources block?

Which collection does not allow duplicates?

What is the default value of a boolean instance variable?