1z0-809 Exam Question 121
Given: What is the result?


1z0-809 Exam Question 122
Given the code fragment:
Stream<Path> files =
Files.walk(Paths.get(System.getProperty("user.home")));
files.forEach (fName -> {//line n1
try {
Path aPath = fName.toAbsolutePath();//line n2
System.out.println(fName + ":"
+ Files.readAttributes(aPath, Basic.File.Attributes.class).creationTime ());
} catch (IOException ex) {
ex.printStackTrace();
});
What is the result?
Stream<Path> files =
Files.walk(Paths.get(System.getProperty("user.home")));
files.forEach (fName -> {//line n1
try {
Path aPath = fName.toAbsolutePath();//line n2
System.out.println(fName + ":"
+ Files.readAttributes(aPath, Basic.File.Attributes.class).creationTime ());
} catch (IOException ex) {
ex.printStackTrace();
});
What is the result?
1z0-809 Exam Question 123
Given:


1z0-809 Exam Question 124
Which two statements are true for a two-dimensional array?
1z0-809 Exam Question 125
Given the following segment of code:

Which two statements, If either were true, would make the code compile?

Which two statements, If either were true, would make the code compile?