What is the final value of the string output given the following code fragment? int counter = 0; int num = 0; string output = ""; while (counter < 3) { num = num * 1; counter = counter + 1; } output = Convert.ToString(num);