Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

canvas.liberty.edu Question 1 2 This algorithm will multiple a number by repeatedly adding the value of A the number of times stated in the value

canvas.liberty.edu
Question 12
This algorithm will multiple a number by repeatedly adding the value of A the number of times stated in the value of B.
For example, if A=10 and B=3, This algorithm will perform the following :
10+10+10=30
Tip: Notice that this only added the value of A 3 times but in your response, you will see it sho ws up to 4 iterations.
If this happens in any of these exercises, the proper answer would be "Loop Ended" for bo th Count and Product.
A=5,B=4
Get A
Get B
STEP 1 If A or B=0
Then Set Product to =0 and Go To STEP 3
Else Set Count to 0 and Set Product to 0 and Go To STEP 2
STEP 2 While Count B
Set Product to (Product + A)
Set Count to (Count +1)
End of Loop;
STEP 3 Print the value of Product
STEP 4 Stop
After Iteration 1:
Count equals
Product equals
After Iteration 2:
image text in transcribed

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

Online Systems For Physicians And Medical Professionals How To Use And Access Databases

Authors: Harley Bjelland

1st Edition

1878487442, 9781878487445

More Books

Students also viewed these Databases questions