Hey everyone, I am currently studying the OCA
Java SE 8 Programmer in page 7 and 8 saysthe following:
Let’s see how to use the args parameter. First we modify the Zoo program to print out
the fi rst two arguments passed in:
args[0] accesses the first element of the array. That’s right: array indexes begin with 0
in Java. To run it, type this:
My question is where should I type
in order to get the following output:
The output is what you might expect:
Bronx
Zoo
I will really apreciate your help.