A good answer might be:No. The && operator is a short-circuit operator (see chapter 40). If openFiles() returns false, the entire expression is false no matter what, so the other methods are not called. |
Opening FilesNow look at the openFiles() method. It will open a BufferedReader stream with the source file and a BufferedWriter with the destination file. Sadly, the method needs some work. |
QUESTION 10:Click in the blanks. Click Here after you have answered the question |