Answer the following concepts of declaring and initializing an array in C# programming language using different ways.
A.Declare an array of five elements of type integer with keyword new, the array name is called values. Do not add elements to an array.
B.Declare an array of four elements of type string with keyword new, the array name is called seasons. Add elements to an array.
C.Declare an array of ten elements of type integer with keyword new, the array name is called numbers. Add elements to an array without specifying the size.
D.Declare an array of five elements of type integer. The array name is called ACM. Add elements to an array without specifying the size and without using keyword new.
Answer:
A. int[] values=new int[5];
B.string[] seasons = new string[4] {"Summer","Winter","Auntum","Spring"};