Multiple choice The stream class 'File Input Stream' throws a/an ____ exception. IO File Not Found Class Not Found Interrupted Reveal answer Fill a bubble to check yourself B Correct answer Explanation FileInputStream throws FileNotFoundException (a subclass of IOException) when attempting to open a file that doesn't exist. This is a checked exception that must be handled or declared when working with file input streams.