What is the format of Inner Class after it compiled?
What are different exception types exceptions available in java ?
What is the purpose of finalization in java programming?
what is function overloading in java?
0 Answers Tavant Technologies, TCS, Virtusa,
What is the smallest package in Java API?
What is an event?
What is application system?
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
What is the common usage of serialization? What exceptions occur during serialization?
What is stringbuffer in java?
What is the base class of all exception classes?
write the hierarchy of component class?
how to handle a singleton service locator. when multiple threads are trying to get the singleton object in same time