QBASIC Program Examples (QB Solver)

QBASIC Basic to Advance Programs, QBASIC Control Statement, Looping Statement, Arrays, Modular Programming, File Handling, SLC & SEE Oriented Solved Questions, Model Questions, Projects etc.

Menu

  • Home
  • E-Books
  • SLC/SEE Solution
  • Numeric Series
  • Patterns
  • Modular Programming
  • File Handling
  • QBASIC Projects

Ad

QBASIC Video Tutorial

Saturday, October 2, 2021

QBASIC Program to print the series 1000, 500, 250, 125, 62.5

Using FOR...NEXT

CLS
n = 1000
FOR i = 1 TO 5
      PRINT n;
Read Continue »
No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

QBASIC Program to print the series 1, 27, 125, 343, 729

Using FOR...NEXT
CLS
n = 1
FOR i = 1 TO 5
      PRINT n ^ 3;
Read Continue »
No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

QBASIC Program to print the series 1, 8, 27, 64, 125...up to 10th term.

Using FOR...NEXT

CLS
FOR i = 1 TO 10
      PRINT i ^ 3;
NEXT i
Read Continue »
No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

QBASIC Program to print the series 1, 4, 9, 16, 25....up to 10th term.

Using FOR...NEXT

CLS
FOR i = 1 TO 10
     PRINT i ^ 2;
     NEXT i
Read Continue »
No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest

QBASIC Program to print the series 5, 25, 125, 625, 3125 …. up to 7th terms.

Using FOR...NEXT

CLS
a = 5
FOR i = 1 TO 7
      PRINT a;
      a = a * 5
Read Continue »
No comments:
Email ThisBlogThis!Share to XShare to FacebookShare to Pinterest
Newer Posts Older Posts Home
Subscribe to: Posts (Atom)

[Download PDF] Computer Science Book Gread-10 in Nepali Language

 If you are searching for class 10 Computer Science in Nepali pdf for free download then you are at the right page. This book is soley publi...

Search

Categories

  • Qbasic program (51)
  • Numeric Series (17)
  • Qbasic Patterns (17)
  • Modular Programming (15)
  • Basic programs (14)
  • File Handling (3)
  • Computer Books (2)
  • SLC/SEE Solution (1)

Blog Archive

  • ▼  2021 (54)
    • ▼  October 2021 (54)
      • ►  Oct 17 (2)
      • ►  Oct 16 (1)
      • ►  Oct 15 (4)
      • ►  Oct 14 (10)
      • ►  Oct 13 (10)
      • ►  Oct 11 (14)
      • ►  Oct 08 (3)
      • ►  Oct 04 (3)
      • ▼  Oct 02 (5)
        • QBASIC Program to print the series 1000, 500, 250,...
        • QBASIC Program to print the series 1, 27, 125, 343...
        • QBASIC Program to print the series 1, 8, 27, 64, 1...
        • QBASIC Program to print the series 1, 4, 9, 16, 25...
        • QBASIC Program to print the series 5, 25, 125, 625...
      • ►  Oct 01 (2)

QBASIC Programs

  • Normal
  • Medium
  • QB Projects

Control Statement

  • IF...THEN
  • IF...THEN...ELSE
  • IF...THEN...ELSE...IF
  • SWITCH Statement

Looping Statement

  • FOR...NEXT
  • WHILE...WEND
  • DO...LOOP
  • Nested Loop

Array

  • Examples

Modular Programming

  • SUB Procedure
  • FUNCTION Procedure

File Handling

  • Read
  • Write
  • Append
  • Projects

Copy Protect

Popular Posts

  • QBASIC Program to print the pattern 1, 22, 333, 4444, 55555 (SUB/FUNCTION Procedure)
    OUTPUT
  • Qbasic Program to print the pattern 1, 12, 123, 1234, 12345 (With SUB/FUNCTION Procedure)
    OUTPUT
  • QBASIC Program to print the series 1, 8, 27, 64, 125...up to 10th term.
    Using FOR...NEXT CLS FOR i = 1 TO 10       PRINT i ^ 3; NEXT i
  • QBASIC pattern program to print *****, ****, ***, **, * (SUB/FUNCTION)
    OUTPUT

Followers

Total Pageviews

Contact Form

Name

Email *

Message *

Test. Theme images by luoman. Powered by Blogger.