OCA Java SE 8 Building Blocks - OCA Mock Question Building Block 6
Question
Which of the following are true? (Choose all that apply)
- A local variable of type boolean defaults to null.
- A local variable of type float defaults to 0.
- A local variable of type Object defaults to null.
- A local variable of type boolean defaults to false.
- A local variable of type boolean defaults to true.
- A local variable of type float defaults to 0.0.
- None of the above.
Answer
Note
G is correct since we must assign value to local variables and local variables
do not get assigned default values.