Welcome to Westonci.ca, the place where your questions are answered by a community of knowledgeable contributors. Our platform provides a seamless experience for finding reliable answers from a knowledgeable network of professionals. Our platform offers a seamless experience for finding reliable answers from a network of knowledgeable professionals.

a programmer is developing a word game. the programmer wants to create an algorithm that will take a list of words and return a list containing the first letter of all words that are palindromes (words that read the same backward or forward). the returned list should be in alphabetical order. for example, if the list contains the words open bracket, open quotation, banana, close quotation, open quotation, kayak, close quotation, open quotation, mom, close quotation, open quotation, apple, close quotation, open quotation, level, close quotation, close bracket, the returned list would contain open bracket, open quotation, k, close quotation, open quotation, l, close quotation, open quotation, m, close quotation, close bracket(because open quotation, kayak, close quotation, open quotation, level, close quotation, and open quotation, mom, close quotationare palindromes). the programmer knows that the following steps are necessary for the algorithm but is not sure in which order they should be executed.

Sagot :

Since the a programmer is developing a word game, by Executing, the sequences of steps that will enable the algorithm to work as intended is II and III

What is a sequence of steps executed for a given purpose?

Succession is the act of doing something after another. successional order: a list of books organized by title. a running or interconnected sequence: a series of sonnets. something that happens after; a following event; a result; or a repercussion.

When a process is described as a series of steps, the operations were carried out in that order. When a sequential pattern of organization is utilized, the data is set up in a way that describes a specific procedure step-by-step.

Note that an algorithm is a set of instructions for solving a certain problem. or An algorithm is an organized series of clear steps that generates a result and ends in a set amount of time.

Hence, Sequencing, selection, and iteration are the three fundamental building blocks that make up an algorithm and the steps above are the right ones to take.

Learn more about programmer from

https://brainly.com/question/22654163
#SPJ1

See full question below

A programmer is developing a word game. The programmer wants to create an algorithm that will take a list of words and return a list containing the first letter of all words that are palindromes (words that read the same backward or forward). The returned list should be in alphabetical order. For example, if the list contains the words ["banana", "kayak", "mom", "apple", "level"], the returned list would contain ["k", "l", "m"] (because "kayak", "level", and "mom" are palindromes). The programmer knows that the following steps are necessary for the algorithm but is not sure in which order they should be executed. Executing which of the following sequences of steps will enable the algorithm to work as intended?

I. First shorten, then keep palindromes, then sort

II. First keep palindromes, then shorten, then sort

III. First sort, then keep palindromes, then shorten

answer choices

I only

II only

I and III

II and III