What is the statement that can be used in Java to represent a missing value of a variable. for instance I want to write a code:
if (a>=23) income = pay_rate;
You need to Initialize varible with null
null
Double income = null; if (a>=23) { income = pay_rate; }