public class Exc { public static void main(String args[]) { int x1=0; try { int x3= 100/x1; } catch(ArithmeticException e)…
November 17th, 2009
Constructors
No Comments, Java Questions, by Daisy Williams.If a class Student creates two student objects. Which of the following statements are true about its constructors? A: The…