Given the code fragment:
Path source = Paths.get("/repo/a/a.txt");
Path destination = Paths.get("/repo");
Files.move(source, destination); // line 1
Files.delete (source); // line 2
Assuming the source file and destination folder exist, what Is the result?
Given:
Which two methods facilitate valid ways to read instance fields? (Choose two.)
Given:
Which two constructors will compile and set the class field strings? (Choose two.)