1. ____________________ is a photographer now famous for demonstrating that all four of a horse’s hooves left the ground during a gallop.

  2. The operator used to access array elements is called the _________________ operator.

  3. Write a code segment that prints each of the elements of a string array. Assume that: (1) the array of Strings has already been declared/initialized as:

    String[] myStrings = new String[10];
    
    (2) that the array has already been filled with String values; and (3) that you should print the String values using println().

  4. Of how many dimensions are the arrays used in this lab exercise?

  5. The two methods provided by Processing for reading strings from a file and for writing strings to a file are ______________ and ______________.