Answer:
The answer is Break
Step-by-step explanation:
When break statement is occurred then, it immediately exits from the loop and executed the statement after the loop without raising any kind of error.
The situation after entering of a value by a user
- If the user entered incorrect value then it will exit from the loop.
- If the user entered correct input value, then it will run the loop for the further values.