Learn Array and ArrayList in Java in one article
Why do we need an array? Let's say you are asked to store the name and roll_number of a student, you will probably declare a string variable to store name and integer variable to store roll number, Like, String name = “myname”; int roll_number = 20; ...
Apr 9, 20225 min read129