You cannot use any resources for this exam, except for the f…
You cannot use any resources for this exam, except for the following:a) A4 paper with single side handwriting and you can have Two sheets of empty paper for writingb) Pen or a pencilc) Calculator (basic) – not through a phone (Lockdown browser also would have it)You cannot use any books, notes, software, electronic devices, or communicate with anyone during the exam. If it appears you have violated these rules during the exam, you will be given a zero score.
Read DetailsWhat is the output of the following code? public class Test…
What is the output of the following code? public class Test { public static void main(String[] args) { try { int[] arr = null; int b = arr.length; } catch (ArrayIndexOutOfBoundsException e) { System.out.print(“oops…”); } catch (NullPointerException e) { System.out.print(“ok…”); } finally { System.out.println(“done”); } }} [BLANK-1]
Read Details