Final answer:
To solve this problem, you can use a programming language like Python to read three 3-letter names from the keyboard, sort them in reverse alphabetical order, and print the sorted names. The program should produce the same results for both capitalized and lowercase names.
Step-by-step explanation:
To solve this problem, you can use a programming language like Python. Here is an example of a program that reads three 3-letter names from the keyboard, stores them in a list, sorts the list in reverse alphabetical order, and then prints the sorted names:
names = []
for i in range(3):
name = input('Enter a 3-letter name: ')
names.append(name)
names.sort(reverse=True)
for name in names:
print(name)
You can run this program twice, with the names entered in the listed order. In Run #1, enter the names capitalized as follows: ABC, XYZ, DEF. In Run #2, enter the names as follows: abc, XYZ, def. The program should produce the same results for both lists because it sorts the names based on their alphabetical order, regardless of whether they are capitalized or not.