NEW
Font size
WorksheetsJava 9 Test
Total questions: 10
Worksheet time: 5mins
___is the process of arranging a series of objects in some logical order
Passing
Organizing
Sorting
Sending
An Array that you can picture as a column of values, and whose elements you can access using one subscript, is a __ Array.
Single-Dimensional
Two-Dimensional
Parallel
Column
When Mathematicians use a two-dimensional array, they often call it a
Grid
Net
Matrix
Mesh
To Declare a two-dimensional array in Java. you type two sets of __after the array type
{ }
[ ]
( )
< >
The Arrays class__ method searches the specified array for the specified key value using the binary search algorithm
binarySearch
sort
Equals
Search
The Arrays class__Method returns true if the two specified arrays of the same type are equal to one another.
compare
sort
equals
fill
The negative integer returned by the binarySearch() Method when the value is not found is the negative equivalent of the array__.
type
scope
size
length
Programmers often refer to a __ search as a "Divide and Conquer" Procedure.
bubble
binary
division
split
You can add an item at any point in a __ container and the array size expands automatically to accommodate the new item
ArrayList
Array
ResizableArray
array
An ArrayList's __ is the number of items it can hold without having to increase its size.
length
buffer
capacity
size
