✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
int s = 1;
int [] b = new int [13];
int [] a = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11};
a.CopyTo (b, 1);
s + = a [4] + a [7]; s + = b [10];
System.Console.Write( "{0} {1} {2}", s, a.Length, a.GetUpperBound (0));
Вкажіть результат виведення на консоль після спроби запустити програму на компіляцію і виконання:
(**CharpBase**)