public class HolidayDriver { public static void main (String[] args) { Holiday [] a = new Holiday [3]; a[0] = new Holiday(); a[1] = new Christmas(); a[2] = new Christmas(); // ilustrates polymorphism // the celebrate method depends on the type of the object accessed by a[i] for (int i = 0; i