0 votes
in JAVA by

What is the default value of an instance variable in Java?

a) null

b) 0

c) false

d) undefined

1 Answer

0 votes
by

Solution: a) null

Explanation: Instance variables are initialized to null by default.

...