You have already completed these exercises!
Do you want to take them again?
You completed the JAVA Arrays and Loops Exercises from W3Schools.com
Share on:
What is the output of the following code?String[] cars = {"Volvo", "BMW", "Ford"};for (int i = 0; i < cars.length; i++) { System.out.println(cars[i]);}
String[] cars = {"Volvo", "BMW", "Ford"};for (int i = 0; i < cars.length; i++) { System.out.println(cars[i]);}