In which of these variable declarations will the variable remain uninitialized unless it is explicitly initialized?.
Select the one correct answer.
(c)
The local variable of type float will remain uninitialized.
Fields and static variables are initialized with a default value.
Local variables remain uninitialized unless explicitly initialized.
The type of the variable does not affect whether a variable is initialized or not.