1.
Write a C# statement to create an array namednumList to hold the 5 numeric scores.
Here is the example of declared an arraydoubleList which stores 10 doublevalues.
double[] doubleList = new double[10];
or
const int SIZE = 10;
double[] doubleList = new double[SIZE];
2. Write a C# statement to declare an array of characters namedalpha which stores 26 letters (‘A’ to’Z’)
3.
The arrays list1 andlist2 each hold 100 integer elements.Write C# code that copies the values inlist1 tolist2
(Instead of using Array.Copy() method, design your own copymethod using the for loop. Here is thefor loop to achieve the copying.)
for (int i = 0; i < 100; i++)
{
//write your
PayPal Gateway not configured
PayPal Gateway not configured