1.The ArrayList class contains an inner class that implements theIEnumerator interface. 2.An ArrayList Collection cannot be accessed simultaneously by different threads. 3.The inner class of ArrayList can access ArrayList class's members. 4.To access members of ArrayList from the inner class, it is necessary to pass ArrayList class's reference to it. 5.Enumerator's of ArrayList Collection can manipulate the array. A.1 and 2 only B.1 and 3 and 4 only C.2 and 5 only D.All of the above E.None of the above Answer: Option B
int[][] a = new int[2][]; a[0] = n ew int[4]{6, 1, 4, 3}; a[1] = new int[3]{9, 2, 7}; Console.WriteLine(a[1].GetUpperBound(0)); A.3 B.4 C.7 D.9 E.2 Answer: Option E
int[] intMyArr = {11, 3, 5, 9, 4}; A.intMyArr is a reference to an object of System.Array Class. B.intMyArr is a reference to an object of a class that the compiler derives fromSystem.Array Class. C.intMyArr is a reference to an array of integers. D.intMyArr is a reference to an object created on the stack. E.intMyArr is a reference to the array created on the stack. Answer: Option B