📘 Class 9 Computer Science
Computer System
Number System
Block Programming
Web Technology
Internet and Social Media
Cyber Security and Digital Citizenship
Concept of Programming
📗 Class 10 Computer Science
Computer Network and Communication
Database Management System
Multimedia
Programming in Python
AI and Contemporary Technologies
Thursday, March 7, 2019
Write a QBASIC Program to generate the series: 999,728,511,342,.......,upto 10th terms
Write a QBASIC Program to generate the series: 999,728,511,342,.......,upto 10th terms CLS a = 999 b = 271 c = 54 FOR i = 1 TO 10 PRINT a a = a - b b = b - c c = c - 6 NEXT i END
No comments:
Post a Comment