A group of students is writing a program that will convert their letter grades into a 4.0 scale. For their program, they want a letter grade to be entered to be converted into the program. Which programming construct should be used to accomplish the selection and conversion?(1 point)

Responses

for loop
for loop

if-then-else
if-then-else

condition
condition

while loop
while loop

1 answer

To convert a letter grade into a 4.0 scale, the most appropriate programming construct to use would be the if-then-else statement. This structure allows the program to evaluate the letter grade and execute different code paths based on the specific grade entered, making it ideal for this type of selection and conversion task.

So the correct response is:

if-then-else