whats is the use of final,in which situation final can be
used in the application?
Answers were Sorted based on User's Feedback
Answer / muralisankar
you can prevent a class from inheritance.
You can prevent a method from overriding.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / cool_duzz
Constants.. that are not supposed to be changed ever.
| Is This Answer Correct ? | 1 Yes | 0 No |
Which java ide is used the most?
Why we used break and continue statement in java?
Can a lock be acquired on a class in java programming?
is this possible to create an array of 0 length? if so how? if not so why? coz we have an array in main() likw this "static void main(String [] s) then what it signifies?
What design pattern you have used in your project? I answered Factory pattern, how it is implemented? What are its advantage? Do know about Abstract Factory?
How would you dynamically allocate memory to an array?
What is ellipsis in java?
If a variable is declared as private, where may the variable be accessed?
What is a priority queue java?
What is try-with-resources in java?
What is the difference between array and arraylist? what is the difference between arraylist and linkedlist?
Give an example of call be reference significance.