Clunker Motors, Inc is recalling all vehicles in its Extravagant line from model years 1999 – 2002 as well as all vehicles in its Guzzler line from model years 2004 – 2007. A bool variable named recalled has been declared.

LANGUAGE: Visual Basic

CHALLENGE:

Clunker Motors, Inc is recalling all vehicles in its Extravagant line from model years 1999 – 2002 as well as all vehicles in its Guzzler line from model years 2004 – 2007. A bool variable named recalled has been declared. Given an int variable modelYear and a string modelName write a statement that assigns true to recalled if the values of modelYear and modelName match the recall details and assigns false otherwise. Do not use an if statement in this exercise!

SOLUTION:

recalled = (modelYear >= 2004) And (ModelYear <= 2007) And (modelName = "Guzzler") Or (modelYear >= 1999) And (ModelYear <= 2002) And (modelName = "Extravagant")