Given:
interface Rideable {Car getCar (String name); } class Car {
private String name; public Car (String name) { this.name = name;
}
}
Which code fragment creates an instance of Car?
Correct Answer:
C
Given the code fragment:
Which code fragment, when inserted at line n1, enables the code to print /First.txt?
Correct Answer:
D
Given the code fragment:
List
//line n1
);
Which code fragment must be inserted at line n1 to enable the code to print the maximum number in the nums list?
Correct Answer:
A
Given the code fragments:
and
What is the result?
Correct Answer:
D
You have been asked to create a ResourceBundle which uses a properties file to localize an application. Which code example specifies valid keys of menu1 and menu2 with values of File Menu and View Menu?
Correct Answer:
D