Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.
The following pseudocode algorithm has an error. The program issupposed to ask the user for the length and width of a rectangularroom, and then...
The following pseudocode algorithm has an error. The program issupposed to ask the user for the length and width of a rectangularroom, and then display the room's area. The program must multiplythe width by the length in order to determine the area. Find theerror.area = width x length.Display "What is the room's width?".Input width.Display "What is the room's length?".Input length.Display area.