Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

I need to remove the bugs from the following pseudocode; // This program counts how many sales are made in each of 5 categories of

I need to remove the bugs from the following pseudocode;

// This program counts how many sales are made in each of 5 categories of products

start

Declarations

num category

num SIZE = 5

num QUIT = 9

num sales[SIZE] = 0, 0, 0, 0, 0

string HEAD1 = "Sales"

string HEAD2 = "Category Number of Sales"

output "Enter category ", QUIT, " to quit "

input category

while category = QUIT

if category >= 1 AND category < SIZE then

sales[category + 1] = sales[category - 1] + 1

else

output "Invalid category"

endif

output "Enter category ", QUIT, " to quit "

input category

endif

output HEAD1

output HEAD2

category = 0

while category <= SIZE

output category + 1, sales[category]

category = category + 1

endwhile

stop

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

More Books

Students also viewed these Databases questions

Question

Critically evaluate research on the HRMperformance relationship

Answered: 1 week ago

Question

What is a verb?

Answered: 1 week ago

Question

=+Are they specific or general in nature?

Answered: 1 week ago

Question

=+ What is the nature of the contracts or agreements with unions?

Answered: 1 week ago

Question

=+What is the procedure for labor relations in the workplace?

Answered: 1 week ago