1. (TCO 5) How many times will DOG be displayed when the following lines are executed?For counter As Integer = 13 To -3 Step -6System.Console.WriteLine(DOG)NextTwoThreeFourFiveNone of the above2. (TCO 5) What numbers will be displayed by the followin
1. (TCO 5) How many times will DOG be displayed when the following lines are executed?For counter As Integer = 13 To -3 Step -6System.Console.WriteLine(DOG)NextTwoThreeFourFiveNone of the above2. (TCO 5) What numbers will be displayed by the following code?Dim num As Integer = 7Donum += 1System.Console.WriteLine(num.ToString(N0))Loop Until (num > 6)System.Console.WriteLine(num.ToString(N0))787 and 88 and 83. (TCO 5) A loop that contains a separate inner loop in its execution code is called an _____. (Points : 3)outer loopinner loopinfinite loopNone of the above4. (TCO 5) When is the loop condition evaluated in a Pretest? (Points : 3)Before executing the loop taskAfter executing the loop taskDuring execution of the loop taskIt depends on the contents of the loop task.