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;
Integer income = null; if (a >= 23) { income = payRate; // underscores are generally considered bad convention in Java }