Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Trace the following algorithms and write down the outputs. BEGIN Set the value of x to 1 2 , y to 2 WHILE ( x

Trace the following algorithms and write down the outputs.
BEGIN
Set the value of x to 12,y to 2
WHILE (x>0)
IF (x9) THEN
set the value of y to y**2
ELSE IF (x12) THEN
set the value of y to y-2
ELSE
set the value of y to y+2
set the value of x to x-2
END OF WHILE
Print the values of x and y
END
a.x=0,y=12
b.x=0,y=32
c.x=12y=0
d.x=12y=4
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_2

Step: 3

blur-text-image_3

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

Main Memory Database Systems

Authors: Frans Faerber, Alfons Kemper, Per-Åke Alfons

1st Edition

1680833243, 978-1680833249

More Books

Students also viewed these Databases questions

Question

4. Make sure students know if and when guessing is appropriate.

Answered: 1 week ago