Q1) You are asked to design a form with a textbox named txtQty, a label named lblStatus, and a button named btnGetStatus. In the space below, write the Visual Basic code to be placed in the button-click event handler. After your code declares variables and retrieves the quantity on hand entered by the user, create a three-alternative selection statement that does the following.
sets a string named strStatus to "Surplus" if the quantity entered by the user is greater than or equal to 100
sets a string named strStatus to "Reorder" if the quantity entered by the user is less than 35
sets a string named strStatus to "No Action" if neither of the conditions above is true
The last step is to display the status string in the label.
What will be Handles clause at the end of sub procedure?