To display the series 2, 1, 3, 4, 7, 11, 18 … upto 10th term. (Qbasic Code) To display the series 2, 1, 3, 4, 7, 11, 18 … upto 10th term. CLSa = 2b = 1PRINT aPRINT bFOR i = 1 TO 8 c = a + b PRINT c a = b b = cNEXT iEND Share : Twitter