Can you pass functions in java?
No Answer is Posted For this Question
Be the First to Post Answer
What is increment in java?
How will you invoke any external process in java?
Explain the importance of finally block in java?
What is sizeof () operator?
different between exception and error? explaim check and uncheck exception
Can we change the value of static variable?
What is ascii format?
What do you mean by Remote procedure call?
who can we create the object of a class? in how many ways we can create it (max 5)
What is a method in coding?
what is main difference b/w abstract class and interface
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac