What is final variable?


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

Post New Answer

More Core Java Interview Questions

abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }

3 Answers  


In the below example, what will be the output?

0 Answers  


What is the difference between Java and C++?

0 Answers   Integreon, TCS, ZS Associates,


What is string immutability?

0 Answers  


What is finally and finalize in java?

0 Answers  






Life Cycle of Thread

4 Answers   IBM,


What are the basic interfaces of java collections framework?

0 Answers  


What is sortedset in java?

0 Answers  


Which collection allows duplicate values in java?

0 Answers  


Why do we need autoboxing in java?

0 Answers  


What are the Memory Allocations available in JavaJava?

1 Answers  


Lowest Common ancestor in a Binary Search Tree and Binary Tree.

0 Answers   Amazon,


Categories