Given the following pseudocode, which of the following is displayed if the user enters 4?

declare number guess

input "Guess a number between 1 and 10?"

if guess <= 1 || guess >= 10

display "Your guess is not valid."

else if guess >=1 && guess <= 10

display "Your guess is valid."

else

display "Error."

end

Given the following pseudocode which of the following is displayed if the user enters 4 declare number guess input Guess a number between 1 and 10 if guess lt 1 class=