Question: Read the program carefully and implement try catch block to handle all the exceptions thrown in the try block. Answer: public class ExceptionHandlingClass{ public static

Read the program carefully and implement try catch block to handle all the exceptions thrown in the try block. Answer: public class ExceptionHandlingClass{ public static void main(String[] args) { String dean = "Prof. Dr. Nazir Shah Khattak"; String chairman = "Sir Hamid Jan"; String coordinatorl = "Sir Mudassir"; String coordinator2 = "Sir Nipash"; String str = "CSIT Dept SUIT"; int number; int[] arrayYearsExp = {100, 200, 300, 400, 500}; String deptProfile = str +""+ dean +""+ chairman +""+coordinator1 +""+ coordinator2; System.out.println(deptProfile); number = Integer.parseInt(deptProfile); System.out.println(number); for(int =0; i
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
