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
Wednesday, October 16, 2019
82. Qbasic program to display 1, 11, 111, 1111, 11111
82. Write a
program using sub procedure to print series: 1,
11, 111, 1111, 11111
WAP to print 2,8 ,18,32........upto 10th term.
ReplyDeletecls
Deletea = 2
b = 6
for i = 1 to 10
print a
a = a + b
b = b + 4
next i
end
Is there an explanation of it?
ReplyDeleteAi Baigan
ReplyDelete