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 I don't provide any arguments on the command line, then what will the value stored in the string array passed into the main() method, empty or null?
What are peerless components in java programming?
What are the default and parameterized constructors?
Is int a class in java?
Name the methods in mouse listeners ?
What is static variable and static method?
32 Answers Accenture, Prolific, Prolifics, TCS, TNH,
What are the different collection views provided by maps?
Define Wrapper Classes in Java.
What are three advantages of using functions?
What is argument in java?
How do you execute a thread in java?
What is numeric promotion?