employer cover photo
employer logo

Pergunta de entrevista da empresa Ezetap

Q) What is the following output of below statement: class Test { public static void main(String args[]) throws IOException { try { System.out.println("Hello"); }catch(IOException e) { e.printStackTrace(); }

Resposta da entrevista

Sigiloso

28 de dez. de 2020

Compile Time Error as IOException is a fully checked Exception.

9