Lesson 12: Array Structure Flashcards
a data structure that consists of a collection of elements, which are stored in a
specific order.
array
the simplest form of an Array in which the elements are stored
linearly and can be accessed individually by specifying the index value of each element stored in the array.
One-Dimensional Array
Every array must be declared before use like other variables.
Declaring One - Dimensional Array
a built-in function in Java that allows you to convert a string into a character array.
toCharArray() method
a convenient way to split a string into an array of substrings based on a specified delimiter. It is a widely used method for converting a string to an array.
The split() method
When creating an array, each item of the series is referred to as _____
a member of the array.
Once the array variable has been declared , each one of its members is initialized with
a 0 value.
refers to the data type of elements in the array.
data_ type
is an identifier which represents the array name.
name size