CS 201, Spring 2000 Assignment #8: 10 Points. Due Date: Friday, 3/31/00. (2) 1. Replace lines 18-26 of the bubble sort in Figure 4.16 with the following statement: sort(arraySize, a); and write a bubble sort function with the following prototype: void sort(int, int[]); Test your sort function using the modified program in Figure 4.16.** (3) 2. A palindrome is a string that is spelled the same forward and backward. Examples of palindromes are "radar", "mom" and "hannah". Write a program which reads a single word into a 30 element character array and then prints the word followed by " is a palindrome" if the word is a palindrome, or by " is NOT a palindrome" if it is not.** (2) 3. Exercise 4.13 (a,c). (2) 4. Exercise 4.16. (1) 5. Exercise 4.18. **For full credit, turn in fully commented program listings, including your name and the problem number, and the output from test runs exactly as produced by the program.