InterviewSolution
Saved Bookmarks
| 1. |
Which of the following can be used for a variable name in Java? a. malloc b. final c. case d. byte |
|
Answer» FinalExplanation:you can ADD the FINAL keyword if you don't want others (or yourself) to overwrite existing values (this will declare the variable as "final" or "CONSTANT". |
|