Clunker Motors Inc. is recalling all vehicles from model years 1995-1998 and 2004-2006.Given a variable modelYear write a statement that assigns True to recalled if the value of modelYear falls within the two recall ranges and assigns False otherwise.

Respuesta :

Answer:

((modelYear > 1994 && modelYear < 1999 )||(modelYear > 2003 && modelYear < 2007 )){

norecall = false;

}else{

norecall = true;

}

Explanation: