Arrays Flashcards
________ store values, but typically only ________ at a time.
Variables, one value
_____ allow you to ______ a variable _______ efficiently.
Loops, reuse, multiple times
A ________ is a way of organizing and storing data so that it can be ________ and ________ efficiently.
data structure, accessed, modified
What are the common Data structures? (name 6 common structures)
arrays, linked lists, stacks, queues, hash tables, trees
______ in Java are _______(consisting of parts all of the same kind.)
Arrays, homogeneous
Arrays store ________ values of a specific _______ and provide _________ to store the same.
one or more, data type, indexed access
A specific ________ in an array is accessed by its ______.
element, index
______ offer a convenient means of ________
related information.
Arrays, grouping
An ______ in an array is a ______ value stored at a
particular position. Each element shares the same
_______ as the array.
element, single, data type
What is the plural form of index?
Indices
What is an index?
An index is the position of an element inside an array.
A _________ is the _______ address in computer memory (RAM) where an array stores its ________.
memory location, physical, elements
What happens when an array is created?
Java allocates a continuous block of memory to store its values.
Arrays in Java are ______ types, meaning the variable holds a ________ (not actual values).
reference, memory address
The _______ is the total ______ of elements stored in an array. In Java, we use .length to get the size of the array.
array length, number
What are the parts of array?(refer to the anatomy of an array)
name of the array list, indexes, array objects with index positions, value of the list, address of the list, memory address
What are the 3 main types of Arrays?
Single Dimensional Array, Double Dimensional Array, Multi-Dimensional Array
This array contains one or more arrays, allowing you to store data in a structured, tabular, or grid-like format, like a table with rows and columns
Multi-Dimensional Arrays
This Array is a ____ dimensional array can be visualized as a table or a matrix. It contains rows and columns.
Double Dimensional Arrays
This is an Array where you can imagine a ____ Dimensional Arrays as a row, where elements are stored one after another.
Single Dimensional Arrays
What is the first step you will do in declaration and initialization?
you must declare a variable of the desired array type
What is the second step you will do in declaration and initialization?
you must allocate the memory that will hold the array, using new, and assign it to the array variable.
Identify the parts(the ones inside the parenthesis) of this syntax: (int) a = new int ([5]);
data type, size of array
Each element is initialized to a _______, a process known as _________.
default value, auto-initialization
A ________ array (1D array) in Java is a structured way of ______________ of the same data type under a single variable name.
one-dimensional, storing multiple values
Since an ______ is an ________ structure, the 1st element of the array is stored at the ____ index, 2nd element is stored on __ index, and so on.
array, index-based, 0th, 1st
How to access 1D array element?
We can access a specific element by its index within the square bracket
It is the way of processing each array element sequentially from the first to the last.
Array Traversal
Since arrays have a ______, they often require _____ to efficiently _____, ______, and process their elements.
fixed size, loops, access, modify
Which loop is commonly used when working with arrays?
For-loop
The ______ is used to iterate through an
array, allowing us to access each _____one by
one without _____ writing separate statements for each index.
for loop, element , manually
Why do we use for loop with array?
Efficient Iteration, Handles Arrays of Any Size, Easy Access to Indexes, Useful for Common Operations
What is the other name for enhanced for loop?
for-each loop
This eliminates the need for index tracking, making the code cleaner and easier to read.
enhanced for loop or for-each loop
What are the 2 limitations of for-each loop?
1.Cannot Modify Array Elements and
2.Cannot Access Index Directly
what are the 5 pitfalls of arrays?
1.Array Index Out of Bounds Exception (ArrayIndexOutOfBoundsException)
2.Fixed Size Limitation
3.Forgetting to Initialize an Array
4. Incorrect Use of .length
5. Forgetting That Arrays in Java Are Zero-Indexed
Identify what type of pitfall is this: What is the error that occurs when .length is used incorrectly in loops?
Incorrect Use of .length
Identify what type of pitfall is this: What error occurs when an array is declared but not initialized?
Forgetting to Initialize an Array
Identify what type of pitfall is this: What is a common mistake beginners make regarding Java array indexing?
Forgetting That Arrays in Java Are Zero-Indexed
Identify what type of pitfall is this: What exception occurs when trying to access an index outside the valid range of an array in Java?
Array Index Out of Bounds Exception
(ArrayIndexOutOfBoundsException)
Identify what type of pitfall is this: What is a limitation of arrays in Java regarding their size?
Fixed Size Limitation
Java provides various utility methods to work with arrays through the _______ in the_______.
Arrays class, java.util package
The ____ class is a utility class that provides _________ to perform common array ________.
Arrays, static methods, operations
It simplifies tasks such as _______, ________, _______, and ________ without requiring manual
implementation.
sorting, comparing, filling, copying arrays
This array method sorts arrays in ascending order.
Arrays.sort()
This array method checks if two arrays contain the same elements in the same order.
Arrays.equals()
This array method sets all elements in an array to a specific value.
Arrays.fill()
This array method creates a new array with the same elements as the original.
Arrays.copyOf()
This array method converts an array into a formatted String representation.
Arrays.toString()
This array method is used to search for an element in a sorted array efficiently.
Arrays.binarySearch()
This array method is used to convert a String into a character array (char[]).
toCharArray()