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 |
What is the final class?
Can you explain the meaning of aggregation and composition
Is alive and join method in java?
What is a boolean expression in java?
Difference between method overloading and overriding.
What is the difference between interpreter and compiling ?
Difference between Choice and a List?
Differentiate between static and non-static methods in java.
Why is string class considered immutable?
how to run servlet program between two computer through the internet ?
2 Answers Kiran Prakashan, TCS,
How do you compare values in java?
What is the difference between a switch statement and an if statement?