Clunker Motors Inc is recalling all vehicles from model years 1995 – 1998 and 2004 – 2006. A bool variable named recalled has been declared. Given an int variable modelYear write a statement that assigns true to norecall if the value of modelYear does NOT fall within the two recall ranges (2001-2006) and assigns false otherwise.

LANGUAGE: Visual Basic

CHALLENGE:

Clunker Motors Inc is recalling all vehicles from model years 1995 – 1998 and 2004 – 2006. A bool variable named recalled has been declared. Given an int variable modelYear write a statement that assigns true to norecall if the value of modelYear does NOT fall within the two recall ranges (2001-2006) and assigns false otherwise. Do not use an if statement in this exercise!

SOLUTION:


norecall = (modelYear < 1995 Or modelYear > 1998) And (modelYear < 2004 Or modelYear > 2006)