Which code fragment, when inserted at line n1, sorts the employees list in descending order of fName and then ascending order of lName?
A.
.sorted(Comparator.comparing(Emp::getfName).reserved().thenC...
Which two modifications enable the code to print Open Close?
A. Replace line n1 with:
class Folder implements AutoCloseable {
B. Replace line n1 with:
class Folder extends Closeable {
C. Replac...
What is the result?
A. Scan.Printer closed. Scanner closed. Unable to scan.
B. Scan.Scanner closed. Unable to scan.
C. Scan. Unable to scan.
D. Scan. Unable to scan. Printer closed.
What is the result?
A. User is registered.
B. An AgeOutOfLimitException is thrown.
C. A UserException is thrown.
D. A compilation error occurs in the main method.
Which modification enables the code fragment to compile?
A. Replace line n1 with:
IntFunction<UnaryOperator> inFu = x -> y -> x * y;
B. Replace line n1 with:
IntFunction<IntUnaryOperator> inFu = x ->...
What is the result?
A. Java 100
B. java.lang.string@<hashcode>java.lang.Integer@<hashcode>
C. A compilation error occurs. To rectify it, replace line n1 with:
Test<Integer> type1 = new Test<>();
D. A...
The Java Projects directory exists and contains a list of files.
What is the result?
A. The program throws a runtime exception at line n2.
B. The program prints files names concurrently.
C. The prog...