Problem:
Question 1- Write a Visual Basic Do clause that processes the loop instructions as long as the value in the intTotal variable is greater than the number 0. Use the While keyword. Now rewrite the Do clause using the Until keyword.
Question 2- Write a Visual Basic Do clause that stops the loop when the value in the intQuantity variable is less than or equal to the value in the intOrdered variable. Use the Until keyword. Now rewrite the Do clause using the While keyword.
Please describe the code with the help of comments.