File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
exercises/concept/bird-watcher/.docs Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 11# About Arrays
22
3- In Java, data structures that can hold zero or more elements are known as _ collections _ .
4- An ** array ** is a collection that has a fixed size and whose elements must all be of the same type .
3+ In Java, arrays are a way to store multiple values of the same type in a single structure .
4+ Unlike other data structures, arrays have a fixed size once created .
55Elements can be assigned to an array or retrieved from it using an index.
66Java arrays use zero-based indexing: the first element's index is 0, the second element's index is 1, etc.
77
Original file line number Diff line number Diff line change 11# Introduction to Arrays
22
3- In Java, data structures that can hold zero or more elements are known as _ collections _ .
4- An ** array ** is a collection that has a fixed size and whose elements must all be of the same type .
3+ In Java, arrays are a way to store multiple values of the same type in a single structure .
4+ Unlike other data structures, arrays have a fixed size once created .
55Elements can be assigned to an array or retrieved from it using an index.
66Java arrays use zero-based indexing: the first element's index is 0, the second element's index is 1, etc.
77
Original file line number Diff line number Diff line change 22
33## Arrays
44
5- In Java, data structures that can hold zero or more elements are known as _ collections _ .
6- An ** array ** is a collection that has a fixed size and whose elements must all be of the same type .
5+ In Java, arrays are a way to store multiple values of the same type in a single structure .
6+ Unlike other data structures, arrays have a fixed size once created .
77Elements can be assigned to an array or retrieved from it using an index.
88Java arrays use zero-based indexing: the first element's index is 0, the second element's index is 1, etc.
99
You can’t perform that action at this time.
0 commit comments