1- Write a function that takes a word less than 25 characters long and returns the letter that word starts with (in capital letters). Frank starts with the letter F. 2- Write a function that has a...


1- Write a function that takes a word less than 25 characters long and returns the letter that<br>word starts with (in capital letters).<br>Frank starts with the letter F.<br>2- Write a function that has a string as formal parameter. The function then replaces all spaces<br>and punctuation marks in the string with the asterisk (*). Here is a sample run:<br>Nothing is impossible, the word itself says 'I'm possible'!<br>Nothing*is*impossible**the*word*itself*says**I*m*possible**<br>3- Write a function that takes as input one line and reverses the words of the line.<br>For example,<br>birds and bees<br>Reversed: bees and birds<br>4- Write a function that takes nouns (a string) as inputs and forms their plurals based on these<br>rules:<br>a. If noun ends in

Extracted text: 1- Write a function that takes a word less than 25 characters long and returns the letter that word starts with (in capital letters). Frank starts with the letter F. 2- Write a function that has a string as formal parameter. The function then replaces all spaces and punctuation marks in the string with the asterisk (*). Here is a sample run: Nothing is impossible, the word itself says 'I'm possible'! Nothing*is*impossible**the*word*itself*says**I*m*possible** 3- Write a function that takes as input one line and reverses the words of the line. For example, birds and bees Reversed: bees and birds 4- Write a function that takes nouns (a string) as inputs and forms their plurals based on these rules: a. If noun ends in "y", remove the "y" and add "ies". b. If noun ends in "s","ch", or "sh", add "es". c. In all other cases, just add "s". (Test on the following: chair dairy boss circus fly dog church clue dish) chairs dairies bosses circuses flies dogs churches clues dishes Now create the driver program, Ask the user for their first and last name. Store the names in separate arrays. - Greet the user by their full names. Let them know what their initials are by calling the function in part 1. Ask them to input their favorite quote. Call function in part 2 to change the quote. Now call the function in line 3 and have the quote reversed. Finally, ask them to put in some nouns and pluralize each noun using the function in part 4. Continue evaluating nouns till the user inputs QUIT.
Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here