Kizspy Question: 45
(Choose 1 answer)
Consider the following C# snippet in a Unity script. How many times will it print "Loop iteration" before
stopping?
int count = 5;
while (count > 0)
{
Debug.Log("Loop iteration");
count -= 2;
RUBVER. JW com
A. 2 times
B. 3 times
C. 5 times
D. Infinite loop