Services
Discover
Homeschooling
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Visual C#
Quiz 7: Arrays and Lists
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
C# provides a special loop known as the ____________, that automatically iterates once for each element in the array.
Question 22
Multiple Choice
A(n) ____________ occurs when a loop iterates one time too many or one time too few.
Question 23
Multiple Choice
____________ is a process that runs automatically in the background from time to time, removing all unreferenced objects from memory.
Question 24
Multiple Choice
The ____________ algorithm is much more efficient than a sequential search when the data set is very large.
Question 25
Multiple Choice
When you process a(n) ____________, you must process only elements containing valid items.
Question 26
Multiple Choice
Because arrays are always passed ____________, a method that receives an array as an argument has access to the actual array.
Question 27
Multiple Choice
Various techniques known as ____________ have been developed to locate a specific item in a larger collection of data, such as an array.
Question 28
Multiple Choice
When only a reference to an object is copied rather than the object's contents, the copy is called a(n) ____________.
Question 29
Multiple Choice
When calling a method and passing an array variable as an argument, the variable contains a ____________ to the array.
Question 30
Multiple Choice
With what value should the accumulator variable be initialized to calculate the total of all values in a numeric array?
Question 31
Multiple Choice
To compare the contents of two arrays, you must compare each of the ____________ in the two arrays.
Question 32
Multiple Choice
To declare a two-dimensional array, two ____________ are required: The first one is for the number of rows, and the second one is for the number of columns.
Question 33
Multiple Choice
The foreach loop is designed to work with a temporary, read-only variable known as the ____________.
Question 34
Multiple Choice
____________ arrays, also known as 2D arrays, can hold two sets of data.
Question 35
Multiple Choice
To successfully ____________ the contents of two variables, we need a third variable that can serve as a temporary storage location.
Question 36
Multiple Choice
The ____________ works like this: The smallest value in the array is located and moved to element 0. The next smallest value is located and moved to element 1. This process continues until all the elements have been placed in their proper order.