How to use for loop in Java ?
Hey there, Lets consider a scenario where in you need to repeat the some functionality over a similar elements / objects in Java. In order to achieve this we need to create a list of similar elements and visit each one of those to use some functionality. Let’s take an example below. #Scenario : I …