Given:
Which option should you choose to enable the code to print Something happened?

Given:
Which two independent changes will make the Main class compile? (Choose two.)

Given:
Automobile.java
Car.java
What must you do so that the code prints 4?

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?
