What is the output of the following code?
using System; class Program { static void Main(string[] args) { int[,] rectArray = new int[3,4]; Console.WriteLine(rectArray.Length); } }
12
3*4=12