Need to learn my basic Java syntax for learning Hadoop.
For loops
Arrays
The List interface is a part of the Java Collections Framework. It extends the Collection interface and provides methods to work with ordered elements (sequence). The two most popular implementations of the List interface are:
ArrayList: A dynamic array that can grow in size.
LinkedList: A doubly-linked list which allows for fast insertions and deletions.