// Test the use of Person and student import javax.swing.*; public class TestPersonStudent { public static void main(String[] args) { // Create a Person and a Student and make them speak // Illustrating dynamic binding // Create a Person array: some elements are of type Person, others // of type Student. Make them speak (iterate through the array) } }