November 2019
Beginner
228 pages
2h 45m
English
When we are in a situation where we need to store and manipulate a bunch of the same types of data, we need to think about the right data structure to use. Let’s say we want to deal with data representing the same category of things such as students’ names and ages in your school. The data will need to be sorted, queried or searched, and accessed easily. And, we sometimes may need to update or delete some of the data.
Java provides a simple data structure called an array to meet these requirements. An array supplies a lot of storage space to accommodate our data. The label of each element ...
Read now
Unlock full access