Question 1. Define an array named forSale that holds 35 Car objects. Initialize the objects in the first three elements with the data below. The rest of the elements should contain NULL pointers. Make Model Year Cost Ford Taurus 2006 $18,000 Honda Accord 2004 $8,000 Jeep Wrangler 2007 $21,000
Question 2. Write a loop that will step through the array you defined in question 1, displaying the contents of each element that doesn't contain a NULL pointer.