1) write an insertfirst function for a partially filled array. this function should accept all required data as input parameters. example if an array contains 7,10,3,9,5 and the insertfirst function is called with a value of 20, the array will become 20,7,10,3,9,5.