What is the difference between a checked and an unchecked exception?
No Answer is Posted For this Question
Be the First to Post Answer
What is anti pattern in programming?
What is the difference between this() and super()?
What are the different types of data structures in java?
Why is sizeof not a function?
How does system arraycopy work in java?
What are void pointers?
How do you initialize an arraylist in java?
Can we have multiple classes in single file ?
When we can access the static data member without creating the object what is the need of the object in java.
5 Answers Airhub, ssinformatics,
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
Can we convert list to set in java?
what is d difference between deep cloning and shallow cloning in core java?