What is the final keyword in java?


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

Post New Answer

More Core Java Interview Questions

How does thread synchronization occurs inside a monitor? What levels of synchronization can you apply?

0 Answers  


What is empty string literal in java?

0 Answers  


Can we access private data outside of the class directly in java programming language? Why There is no runtime checking in java, which leads to access the private data directly outside of a class?

5 Answers   Google,


What is a lock or purpose of locks in java?

0 Answers  


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  






What are the main differences between notify and notifyAll in Java?

0 Answers  


What is a control variable example?

0 Answers  


What happens when you assigned a 'double' value to a 'String'?

8 Answers  


Can we increase size of array?

0 Answers  


What is callablestatement? How you can call stored procedure to pass in parameter?

0 Answers  


Explain runtime exceptions?

0 Answers  


what is the use/perpose of having a method antive?

2 Answers  


Categories