Mock Exam · ID 0

1z0-830 — Java SE 21 Developer Professional

176:00
Question 1 of 88

Given a properties file on the classpath named Person.properties with the content: ini name=James And: java public class Person extends ListResourceBundle { protected Object[][] getContents() { return new Object[][]{ {"name", "Jeanne"} }; } } And: java public class Test { public static void main(String[] args) { ResourceBundle bundle = ResourceBundle.getBundle("Person"); String name = bundle.getString("name"); System.out.println(name); } } What is the given program's output?