Given the code fragment:
BiFunction
What is the result?
Correct Answer:
C
Given:
and this code fragment:
What is the result?
Correct Answer:
C
Given:
IntStream stream = IntStream.of (1,2,3); IntFunction
IntStream newStream = stream.map(inFu.apply(10)); //line n2 newStream.forEach(System.output::print);
Which modification enables the code fragment to compile?
Correct Answer:
B
Given the code fragment:
public void recDelete (String dirName) throws IOException { File [ ] listOfFiles = new File (dirName) .listFiles();
if (listOfFiles ! = null && listOfFiles.length >0) {
for (File aFile : listOfFiles) { if (aFile.isDirectory ()) {
recDelete (aFile.getAbsolutePath ());
} else {
if (aFile.getName ().endsWith (“.class”)) aFile.delete ();
}
}
}
}
Assume that Projects contains subdirectories that contain .class files and is passed as an argument to the recDelete () method when it is invoked.
What is the result?
Correct Answer:
A
Given:
public enum USCurrency { PENNY (1),
NICKLE(5), DIME (10), QUARTER(25);
private int value;
public USCurrency(int value) { this.value = value;
}
public int getValue() {return value;}
}
public class Coin {
public static void main (String[] args) { USCurrency usCoin =new USCurrency.DIME; System.out.println(usCoin.getValue()):
}
}
Which two modifications enable the given code to compile? (Choose two.)
Correct Answer:
BC