What do you mean by local class?
No Answer is Posted For this Question
Be the First to Post Answer
where u use Abstraction and Interface in real time
What is the purpose of a volatile variable?
What does regex mean?
What are the problems faced by java programmers who don't use layout managers?
Why java uses the concept of the string literal?
What are thread safe functions?
Difference between the String and StringBuffer classes?
Explain about wait() method?
What is the simpletimezone class in java programming?
what is the volatile modifier for? : Java thread
What are the two ways in which thread can be created?
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