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
Starting out with Visual C# Study Set 1
Quiz 7: Arrays and Lists
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 21
Multiple Choice
____________ is a process that periodically runs, removing all unreferenced objects from memory.
Question 22
Multiple Choice
The ____________ is a clever algorithm that is much more efficient that the sequential search.
Question 23
Multiple Choice
C# provides a special loop known as the ____________, that automatically iterates once for each element in the array.
Question 24
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 25
Multiple Choice
The foreach loop is designed to work with a temporary, read-only variable known as the ____________.
Question 26
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 27
Multiple Choice
To successfully ____________ the contents of two variables, we need a third variable that can serve as a temporary storage location.
Question 28
Multiple Choice
To compare the contents of two arrays, you must compare the ____________ of the two arrays.
Question 29
Multiple Choice
In C#, all arrays have a(n) ____________ that is set to the number of elements in the array.
Question 30
Multiple Choice
When you call a method and pass an array as an argument, you simply pass the____________ that references the array.
Question 31
Multiple Choice
When you process a(n) ____________, you must process only the elements that contain valid items.
Question 32
Multiple Choice
____________ arrays, which are also called 2D arrays, can hold multiple sets of data.
Question 33
Multiple Choice
A(n) ____________ occurs when a loop iterates one time too many or one time too few.
Question 34
Multiple Choice
When only a reference of an object is copied and not the contents of the object itself, it is called a(n) ____________.
Question 35
Multiple Choice
The ____________ uses a loop to sequentially step through an array, starting with the first element.
Question 36
Multiple Choice
Because arrays are always passed ____________, a method that receives an array as an argument has access to the actual array.
Question 37
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.