(20 points)
(18 points)
public String readLine()The end of a file is indicated with a null value.
Both the constructing of the files and the read operation may throw the exception Exception.
Write interactive program WhichOneIsMoreChristmasLike, which starts by asking for the names of two input files. Then the program finds out, which one of the two input files contains more lines, where there are one or more of the following Chrismas words: "Christmas", "tree", "Santa" or "porridge"
Finally the program prints, which one of the two input files contained more of those Chrismas words. It is of course possible that they contain the same amount of those lines, too.
The program WhichOneIsMoreChristmasLike has to handle any Exception-exception possibly caused by constructing and reading the input files in a sensible and user-friendly way.
(15 points)