Computer Science, asked by siiya4984, 10 months ago

II. QBASIC Programming using FOR-NEXT:
1. Draw a flowchart and write a program in QBASIC to display the first 10 terms of the
series:
(a) 3, 6, 12, 24,
up to 10 terms​

Answers

Answered by aliahehsan30
3

Answer: C=0

T=3

FOR C= 1 TO 10

T= T+T

PRINT T

NEXT C

Explanation: Mark me as brainliest

Similar questions