Question: . Write a function dayName that consumes a parameter, day, containing % the numerical value of a day in the month of September 2008. %

. Write a function dayName that consumes a parameter, day, containing % the numerical value of a day in the month of September 2008. % Your function should return the name of that day as a string. % For example: name = dayName( 8 ) % should return 'Monday' % b. You are now given a variable named days, a vector that contains the % numeric values of days in the month of September 2008. % Write a script that will convert each numeric value in the vector days % into a string named daysOfWeek with the day names separated by a comma % and a space. For example, if days = [8, 9, 10]; % daysOfWeek should be Monday, Tuesday, Wednesday % Hint: You should probably be concatenating the day names and the delimiters. % Notice that there is no separator before the first day name or after the % last one.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!