The filehandle INPUT is associated with the file represented by $file. Which statement will close the filehandle INPUT?
close (INPUT, $file);
closeINPUT;
INPUT(close, $file);
close(INPUT);
Submit