Which of the following means that in order for the conditional to happen, either x must be less than 3 or y must be greater than or equal to 4 ?
if ((x < 3) && (y > 4))
if (x < 3 y >= 4)
if ((x < 3) || (y > = 4))
if ((x > 3) || (y < = 4))