Math, asked by kharikareddy007, 4 months ago

Choose the pseudo code snippet(s) that would produce the output:
12345
(2 Points)
i
ii
iv
a=1
loop (1 to 5) {
print (a)
at=1
}
loop (1 to 5) { a=1
a=1
loop (1 to 5) {
print (a) a=a+1
a=a+1
}
}
print (a)
a=1
loop (1 to 5) {
a=a+1
print (a)
}​

Answers

Answered by sanskritigupta2020
9

Answer:

options are not clear but in python , program will be this

Step-by-step explanation:

i=1

while i <=5 :

print (i)

i = i+1

Similar questions