Computers and Technology
04. Suppose a computer program needs to sort a list of student records in ascending orderaccording to last name. The program language determines sort order by using theindividual ASCII number representations of the characters in each name.If the initial list contains the following names. Which of the following lists representsthe name order after executing the sorting procedure?["Tom Smith","Joe Schnook", "Kathy Bones","Jill Brewer"](A) ["Smith Tom", "Schnook Joe","Bones Kathy","Brewer Jill"](B) ["Joe Schnook","Tom Smith","Jill Brewer", "Kathy Bones"](C) ["Jill Brewer","Joe Schnook", "Kathy Bones", "Tom Smith")(D) ["Kathy Bones","Jill Brewer","Joe Schnook","Tom Smith"]