Answer:
D) ["Kathy Bones", "Jill Brewer", "Joe Schnook", "Tom Smith"]
Explanation:
The context of the problem explains a computer program that sorts names in "ascending order" (A to Z) since the ASCII table has capital A start a lower number and it increases from there to capital Z.
Notice how the attached file, which is a portion of the ASCII table, shows that letters after A are also higher in decimal value than the previous letter.
With this in mind, we know that all this program does is sort by last name alphabetical order. From there, just sort the given names using that same criteria, last name alphabetical order, and the correct answer is determined.
<em>Please put "Brainliest" on my answer if it helped you out!</em>
<em>If you want to learn more about this subject, you can search:</em>
<em>- ASCII Table</em>
<em>- Lists in Programming</em>
<em>- Sorting Procedures</em>