What Will Be The Output Of The Following Code Snippet:public class Quiz{public static void Main(string[] args){int[] i = new int[0];Console.WriteLine(i[0]);}}a) 0
b) Nothing is printed as array is empty
c) Compile time error
d) IndexOutOfRangeException
e) 1