Each of the following algorithms performs data validation.
State the type of validation check that each of the following algorithms performs.
(a)
INPUT x IF x < 0 OR x > 10 THEN OUTPUT "Invalid" ENDIF
(b)
INPUT x IF x = "" THEN OUTPUT "Invalid" ENDIF
(c)
INPUT x IF NOT(x = "Red" OR x = "Yellow" OR x = "Blue") THEN OUTPUT "Invalid" ENDIF