Analise o seguinte programa desenvolvido na linguagem C#: using System; namespace prova { class Class1 { static void Main(string[] args) { int[,] mat = new int[3,3] {{1,2,3}, {2,1,3}, {3,2,1}}; int aux=mat[0,0]; mat[0,0]=mat[0,1]; mat[0,1]=aux; aux=mat[1,1]; mat[1,1]=mat[2,2]; mat[2,2]=aux; aux=mat[2,1]; mat[2,1]=mat[1,2]; mat[1,2]=aux; foreach (int num in mat) Console.Write(num); } } } Assinale a opção CORRETA que corresponde à saída gerada pelo programa: