Answered step by step
Verified Expert Solution
Question
1 Approved Answer
a = 0; i = 0; While (i < 10) do a = a + i; I = i + 1 endwhile Assembly - language
a = 0;
i = 0;
While (i < 10) do
a = a + i;
I = i + 1
endwhile
Assembly - language instructions:
Move eax,0 ; transfer the value 0 into the
; variable a
Move ebx,0 ; transfer the value 0 into the
; variable i
cmp ebx,10 ; compare the value of i with 10
Jl loop ; if i is less than 10 jump to the
; label loop.
Loop;
Add eax, ebx; add i to a.result is stored in a.
Add ebx, 1 ; add 1 to i.result is stored in i
Write in pseudocode, and a flowchart.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started