What is the blank final variable?
Answers were Sorted based on User's Feedback
Answer / radhi
a variable with final keyword is called as blank final
variable....
eg. final int i=7;
we cant change the final variable....
there is no use ..if we can make a variabe as final....
| Is This Answer Correct ? | 7 Yes | 4 No |
Answer / pratima
final int i;
You will get compile time error:The blank final field i may not have been initialized
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sani
when we declare a variable as final is blank final its value
will not change.
| Is This Answer Correct ? | 1 Yes | 4 No |
if num=687; U have to get num=6+8+7;
What are the 4 types of characters?
How to perform quicksort in java?
What are the 3 types of control structures?
What is float in java?
Define jit compiler?
What is the common usage of serialization?
What is the difference between a field variable and a local variable?
What JNDI(Java Naming and Directory Interface) provides?
Hi buddy, well i got that there is always a default constructor with abstract class. OK. But why not with interface? Thanks in advance.
what are abstract functions?
What is Java Reflection API? Why it’s so important to have?