Question 1  of   8

What is the output of the following code? string encrypted = "gboaodd"; for (int i= 0; i< encrypted.Length; i++) { if (i %2 !=0) { continue; } Console.Write(encrypted[i]); }

A. god
B. good
C. odd
D. bad