How can an object be unreferenced?
No Answer is Posted For this Question
Be the First to Post Answer
List some important characteristics on jre
The following program is Overloading or Overriding? public class PolymorphismEx { public int sampleMethod(int a) { return a; } public String sampleMethod(int a) { return "Is it Overloading or Overriding???"; } }
4 Answers Ness Technologies, TCS,
How many decimal places is a double?
How can you add and remove nodes in jtree?
Does sprintf add a null terminator?
Explain about interrupt() method of thread class ?
Differentiate between a constructor and a method? Can we mark constructors final?
What are the problems faced by java programmers who don't use layout managers?
what is difference between class and object?
43 Answers College School Exams Tests, HCL,
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 jar?
What are the interfaces defined by Java.lang package?