1
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))