IncorrectCorrectNo Answer was selectedInvalid Answer
Given the following code, what will be printed if shadow is true and augustStart is false?
if(shadow && augustStart){System.out.println("Summer vacation is 4 weeks away!");}if(shadow || augustStart){System.out.println("Summer vacation is just around the corner!");}if(!shadow && augustStart){System.out.println("Summer vacation is just around the corner!");}if(!shadow ||!augustStart){System.out.println("Summer vacation is 4 weeks away!");}