Skip to content
March 21, 2023

Prajwal Rai Blog

  • Home
  • MY BLOG
    • IT
    • Others
  • C-Program
  • Plus 2
    • Class 11
    • Class 12
  • QBasic
    • QBasic-Basics
    • Patterns in QBasic
    • Numeric Pattern
    • Modular Program
    • Program Design Tools
    • QBasic Projects
  • Web Design
    • HTML AND CSS
    • JavaScript
  • PHP
  • Fundamental
  • About me
Main Menu

QBasic-Basics

QBasic / QBasic-Basics

ARRAY in QBASIC

March 16, 2019February 19, 2023 - by Prajwal Rai - Leave a Comment

Greatest among 5 numbers using Array CLS DIM num(4) PRINT “Enter any any 5 numbers” FOR j = 0 TO 4 INPUT num(j) NEXT j lrg = num(0) FOR j …

ARRAY in QBASIC Read More
QBasic / QBasic-Basics

Library Functions of QBasic Examples

August 31, 2018February 19, 2023 - by Prajwal Rai - Leave a Comment

Library Functions (Click Here) Convert Decimal to Binary   CLS INPUT “ENTER DECIMAL NUMBER” ; D WHILE D < > 0 R = D MOD 2 S$ = STR$(R) + S$ D …

Library Functions of QBasic Examples Read More
QBasic / QBasic-Basics

IF Statement and FOR Statement in QBasic Examples

August 9, 2018February 19, 2023 - by Prajwal Rai - Leave a Comment

To find positive negative or zero. CLS INPUT “Enter any number” ; a IF a > 0 THEN PRINT “The number is positive” ELSEIF a < 0 THEN PRINT “The …

IF Statement and FOR Statement in QBasic Examples Read More
QBasic-Basics

Library Functions in QBASIC-Introduction

March 24, 2018February 19, 2023 - by Prajwal Rai - 3 Comments.

Introduction: A function is a built-in formula or a ready made program which helps us to perform a certain task such as mathematical, financial, logical etc. A function manipulates data …

Library Functions in QBASIC-Introduction Read More
QBasic-Basics

QBASIC Programming- Simple

March 19, 2018February 19, 2023 - by Prajwal Rai - Leave a Comment

QBASIC Programming Sum of two numbers CLS REM To find Sum of two numbers INPUT “Enter the first number”; a INPUT “Enter the second number”; b SUM = a + …

QBASIC Programming- Simple Read More
QBasic-Basics

QBASIC Statements

March 19, 2018February 19, 2023 - by Prajwal Rai - 1 Comment

QBASIC Statements: Any command or the instructions in the QBASIC is called a statement. Statements are classified into executable and non-executable. Executable statement specify actions and non-executable statements specify characteristics, …

QBASIC Statements Read More
QBasic-Basics

Elements of QBASIC

March 18, 2018February 19, 2023 - by Prajwal Rai - Leave a Comment

Elements of QBASIC language are: Character Set Constants Variables Operators Expressions 1.Character Set: The set of valid characters that a language can be recognize. A character include alphabets, numbers and …

Elements of QBASIC Read More
QBasic-Basics

Introduction to Qbasic

March 18, 2018February 19, 2023 - by Prajwal Rai - Leave a Comment

BASIC stands for Beginners’ All purpose Symbolic Instruction Code which is one of the most popular high level language developed in the year 1964 at Darmouth College -United Stated of …

Introduction to Qbasic Read More

Recent Posts

  • Write a program in C to enter ‘N’ of data using file handling (user choice)
  • Write a program in C to copy file using file handling
  • Write a program in C to display the students of age 20-25 and store in file
  • Write a program in C using structure to enter the id and four different subjects marks of 3 students and display them in proper format along with total and percentage. (Note: Marks should be between 0 and 100)
  • Enter name and post of ‘N’ employees and display using structure in C-Program

Archives

  • March 2023
  • February 2023
  • September 2021
  • May 2021
  • April 2021
  • March 2021
  • August 2020
  • January 2020
  • December 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • October 2015
  • September 2015
Copyright © 2023 Prajwal Rai Blog.
Maintained by Prajwal Rai