Problem Statement
Which statement about java.nio.file.Path and Files is TRUE?
Explanation
Files.walk produces a Stream that must be closed (try-with-resources). Path can represent non-existing locations; Paths.get can be relative. readAllLines loads all content into memory.