posted 7 years ago
Question 28:
The answer says " The method compiles and returns a Path value that is always equivalent to the input argument." which is not correct. When the path is absolute, it returns the same path back, but if it is not null and relative, it returns absolute path , which may be from the current working directory and would not be equivalent to input argument.
ex.
returns
D:\test\path1
D:\Java7Workspace\OCP\test2
The absolute path is equivalent to input path but the relative one is not.