-
Which of the below is false about java coding?
-
- class constants should be used when we want to share data between class methods
- test case method names should be created as english sentences without spaces
- variable names should be such that they avoid ambiguity
- variable names should be short
- None of these
Correct Option: D
variable names like i, a, abc, etc should be avoided. They should be real world names which avoid ambiguity. Test case name should explain its significance.