In this exercise, you use what you have learned about writing
Do While loops. Study the following code and then answer Questions 1-3.
```
Const NUM_LOOPS As Integer $=7$
Dim numberOfTimes As Integer $=$ NUM_LOOPS
Do While numberOfTimes < NUM LOOPS
System.Console.WriteLine("Value of numberOfTimes is "
$\&$ number0fTimes)
numberOfTimes $=$ numberOfTimes +1
Loop
```
What is the output if the code is changed to Do While numberOfTimes <= NUM_LOOPS?