Computer Science, asked by sastika09, 7 months ago

Write a program in Q-Basic to display the first 10 terms of the following series:3,6,12,24...​

Answers

Answered by Anonymous
2

Answer:

CLS. // CLEAR SCREEN

I=3. //initializing i

For i = 1 to 10. // starting loop from 1 to 10

Print i // print the i value

i = i*2. // formula to get started

Next // increamenting value

End.

HOPE IT WILL HELP U U!!!

Mark as brainliest!!

Similar questions