Answer:
Scanner in = new Scanner(hoursFile);
Step-by-step explanation:
The syntax to read the content of a file after the file has been created/initialized is as follows;
Scanner [variable-name] = new Scanner([object-name]);
From the question above, the [object-name] is hoursFile
Substitute [object-name] with hoursFile, the syntax becomes
Scanner [variable-name] = new Scanner(hoursFile);
[variable-name] can be anything as long as it follows variable naming convention;
From the list of given options, the option that answers the question is: Scanner in = new Scanner(hoursFile);