10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
998What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } } 10. What is the output of the following Java program? class Main { public static void main(String args[]){ final int i; i = 10; System.out.println(i); } }
1 1525
Is java call by reference?
What is primitive array?
how to create daemon thread in java?
Can we make a constructor final?
Write a program to check for a prime number in java?
What are the 6 functions?
Explain the difference between treeset and treemap in java?
What is a method in coding?
Why Set interface contains unique elements, what internally implemented for this so that it contains unique elements?
Give few difference between constructor and method?
What is scope & storage allocation of global and extern variables? Explain with an example
Can we change the scope of the overridden method in the subclass?
Explain the difference between protected and default access.
What is user defined exception in Java?
Can a vector contain heterogenous objects?