Can a constructor be made final?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

Can we override final method?

0 Answers  


Can we return null in java?

0 Answers  


What are the types of methods in java?

0 Answers  


Can we have more than one package statement in the source file?

0 Answers  


Is string a data type in java?

0 Answers  


What is the difference between serial and throughput garbage collector?

0 Answers  


How can you add and remove nodes in jtree?

0 Answers  


what is the difference between ArrayList and Vector

19 Answers   KPIT, Sasken, Satyam, Span Infotech, Wipro,


Can you call a private data from an inner class?

6 Answers  


Is there any limitation of using inheritance?

0 Answers  


How objects of a class are created if no constructor is defined in the class?

0 Answers  


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

5 Answers  


Categories