Example(s):Palindrome, prime, armstrong, "linear search", reverse etc.
Example(s):1575, 1632, 1539 (Only one at a time)
Login
[lwa]
Solved Problem
#JAVA#3875
Problem Statement - Data default values Viva-question
Why do we need to initialise local variables when we have default values specified for all primitive data types.
Solution
TC++ #3875
Java does not allow default values for local variables so that the programmer is forced to use the known values of variables and accidentally processing the incorrectly value is reduced. For static and instance variables they may have to be used by many discrete methods so default values are useful.