Question: urgent. do in netbean JAVA (c) Consider the following Java program in Figure Q4(c). double cgpa; try { System.out.println(Entering the try block.); if (cgpa >
urgent. do in netbean JAVA
(c) Consider the following Java program in Figure Q4(c). double cgpa; try { System.out.println("Entering the try block."); if (cgpa > 4.00) throw new Exception("cgpa limit violation."); System.out.println("Exiting the try block."); } catch (Exception e) { System.out.println("Exception: " " + e.getMessage()); } Figure Q4(c): Exception handling. What is your point of view regarding the program given in Figure Q4(c)? Can you suggest a better solution? [5 marks]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
