In the Guess My Number program, the user continues guessing numbers until the secret number is matched. The program needs to be modified to include an extra criterion that requires all guesses to be within the lower and upper bounds. If the user guesses below or above the range of the secret number, the while terminates. How would the while statement be modified to include the new criterion?
while(userGuess != secretNumber || userGuess >= lowerLimit || userGuess <= upperLimit)
while(userGuess != secretNumber || userGuess >= lowerLimit && userGuess <= upperLimit)
while(userGuess != secretNumber && userGuess >= lowerLimit && userGuess <= upperLimit)
while(userGuess == secretNumber || userGuess >= lowerLimit && userGuess <= upperLimit)
while(userGuess == secretNumber && userGuess >= lowerLimit || userGuess <= upperLimit)