1. (TCO 5) Floating-point variables such as Double should not be used _____.as counters that control loop executionto perform mathematical calculations inside a loopas approximate representations of decimal numbersfor applications when precision is r
1. (TCO 5) Floating-point variables such as Double should not be used _____.as counters that control loop executionto perform mathematical calculations inside a loopas approximate representations of decimal numbersfor applications when precision is required2. (TCO 5) A loop that contains a separate inner loop in its execution code is called an _____.outer loopinner loopinfinite loopNone of the above3. (TCO 5) A loop that never stops executing is called _____.a nested loopan infinite loopa Pretest loopa Posttest loop4. (TCO 5) Given the following partial program how many times will the inner loop body (System.Console.WriteLine((num1 + num2).ToString(N0))) be executed?Dim num1 num2 As IntegerFor num1 = 1 To 3For num = 0 To 2System.Console.WriteLine((num1 + num2).ToString(N0))NextNextFiveSixEight16None of the above