SEE Computer Science
Specification Table 2076,
Networking and Telecommunication, Ethical and Social Issues in ICT, Computer Security, E-Commerce, Contemporary Technology, Number System, Database Management System (MS Access), Modular Programming, Sequential File Handling, C Programming Basics, SEE Computer E-Book Grade IX and X
Friday, February 16, 2018
QBASIC Program to Generate the series 2,4,8,14,22...10th term
QBASIC Program to Generate the series 2,4,8,14,22...10th term
CLS
A = 2
B = 2
FOR I = 1 TO 10
PRINT A
A = A + B
B = B + 2
NEXT I
END
THANKU SIR
ReplyDeleteHow nice boy
ReplyDelete