Computer Science, asked by pavithamo, 20 days ago

Start
a = 1, c = 0, b = 0
while(a <= 4)
{
b = b + a
C++
b ++
}
Output b
End​

Answers

Answered by sarishti13052
1

Answer:

A=B=C=1

Explanation:

Start

a = 1, c = 0, b = 0

while(a <= 4)

{

b = b + a

C++

b ++

}

Output b

End

Similar questions