draw a flowchart and write the algorithm for printing the first 10 even numbers

umma shaha

mlkkkkkk

sry here what is mean by NEXT I can't understand

It is specific i.e it's not written well,i don't understand it at all.I'm a first time learner

write an algorithm and flowchart for first 10 even number

yes

I'm holding my flowchart up to the screen. Take a look.

the algorithm is

for n = 2 to 20 step 2
  print n
next n

or, if you don't like for loops,

i=1
n=2
NEXTI:
print n
n = n+2
i = i+1
if i <= 10 go to NEXTI
stop