Which two statements are correct about try blocks? (Choose two.)
What makes Java dynamic?
Which interface in the java.util.function package will return a void return type?
Given the code fragment:Path currentFile = Paths.get(''/scratch/exam/temp.txt'');Path outputFile = Paths get(''/scratch/exam/new.txt'');Path directory = Paths.get(''/scratch/'');Files.copy(currentFile, outputFile);Files.copy(outputFile, directory);Files.delete (outputFile);The /scratch/exam/temp.txt file exists. The /scratch/exam/new.txt and /scratch/new.txt files do not exist.What is the result?
Which describes a characteristic of setting up the Java development environment?