In the Java programming language, the compiler will not set a default value to __________.
Note: Select all that apply:
non-static fields
boolean variables
methods
local variables
instance variables
None of the answers are correct
static fields
class variables
objects
Q-> In the Java programming language, the compiler will not set a default value to __________.
Answer:
non-static fields
local variables
objects
Methods
Every other variable has default value
boolean variables have default value of false
instance variables have 0 as default for integer
static fields have 0 as default value
class variables have 0 as default value or user specified in class
In the Java programming language, the compiler will not set a default value to __________. Note:...