6
Programming with Arrays
• Work with Java arrays
• Work with ArrayList objects and their methods
Two-Minute Drill
Q&A Self Test
A cornerstone of software development is working with data structures to store and retrieve data. Arrays are one of the most fundamental data structures; in fact, they can be found in nearly every programming language, and Java is no exception. Java inherited arrays from the C language, along with many of its other syntax rules. In additional to standard arrays, Java has an ArrayList ...