SEARCH
You are in browse mode. You must login to use MEMORY

   Log in to start


From course:

4IT101 - ZT

» Start this Course
(Practice similar questions for free)
Question:

Který z následujících fragmentů kódu nám při následném odchycení výjimky poskytne informaci o jméně souboru, který nebyl nalezen (předpokládejte, že všechny proměnné jsou korektně deklarovány a použity): ● If (!f.exists()) { throw new IOException („Soubor „ + f.getName()+"nenalezen");} ● Exception e=new IOException („Soubor nenalezen"); if (!f.exists()){throw e;} ● if (!f.exists()) { throw „Soubor nenalezen";} ● If (!f.exists()) { throw new IOException();}

Author: Karel Marčík



Answer:

● If (!f.exists()) { throw new IOException („Soubor „ + f.getName()+"nenalezen");}


0 / 5  (0 ratings)

1 answer(s) in total