/** Demonstration that a String[] can be passed to a function * expecting an Object[] */ public class TestArrayTypes { public static void reverseArray(Object [] A) { for(int i=0,j=A.length-1; i