Structs differ from arrays, in that Data is not stored with structs Structs cannot inherit or derive a new type No methods are available with structs All of the above A collection where access is restricted to the beginning or top of the list is a HashTable ArrayList Queue Stack One of the special properties in the ArrayList class is Count. It returns _____ an int representing the number of values currently stored in the array an int representing the size the array was dimensioned how much storage is consumed by the entire array the length of an individual element of the array One of the properties of the ArrayList class is _____. It Gets or sets the number of elements that the Array can contain. Length Contain Capacity Count In order to determine the position of one or more characters inside a string argument, use the _____ method the string class. Location() IndexOf() Position() PIace() The method _____ of the ArrayList class returns an arraylist that is a subset of another arraylist. GetSubList() SubList() InsertRange() GetRange() _____ are types of data structures that consist of a sequence of data records such that in each record there is additional field that contains a reference (i.e., a link) to the next record in the sequence. Arrays Linked lists ArrayLists Strings Which class represents a First-In-First-Out (FIFO) collection, which is useful for storing objects in the they were received for sequential processing? Queue Stack HashTable ArrayList Which of the following is an example of a collection class? Array HashTable Queue all of the above int[] [] anArray = new int[2] []; anArray[0] = new int[] {100, 200}; anArray[1] = new int[] {11, 22, 37}; The above segment of code _____ creates a jagged array creates a syntax error creates a 2 times 3 array declare a three-dimensional array Constructors are defined with _____ access modifiers. private public protected internal