Getting Started with Java
This is a 100% free course, but we need you to first join or login to watch this video.
Alright, join or login here.This video introduces you to the concept of Arrays in Java. Arrays are basically common variable names that store a bunch of similar values. You specify the size of an array while creating it. It has indices starting from 0 that last till the size of the array. You can find the element at any position and update the value at that position. You can also send arrays to methods and receive arrays from methods.