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 can set income to null. Later, when you check value of income, if it is null, than treat it as missing
Integer income = a>=53?pay_rate:null;