The pseudocode that prompts the user to enter a number num1 in the range of 1 through 100 and validates the input is as follows:
Declare Real number
Display " Enter a number in the range of 1 through 100"
Input number
While number < 1 Or number > 100
Display " ERROR: The number is less"
Display "then 1 or greater than 100."
Display " Enter the right number."
Input number
End While
Define pseudocode.
Pseudocode, as used in computer science, is a straightforward explanation of how an algorithm or other system works. Although pseudocode frequently adheres to the structural rules of a regular programming language, it is written for human rather than machine reading.
Using pseudocode serves the efficient key algorithmic principle. Prior to beginning the real coding process, it is used to develop an algorithm and sketch out the layout of the program. Programmers of all stripes can understand pseudocode.
To learn more about pseudocode, use the link given
https://brainly.com/question/24953880
#SPJ4