InterviewSolution
Saved Bookmarks
| 1. |
What Is The Purpose Of Declaring A Variable As Final? |
|
Answer» A FINAL VARIABLE's value can't be CHANGED. final variables should be INITIALIZED before using them. A final variable's value can't be changed. final variables should be initialized before using them. |
|