आजको यो टेक्नोलोजीको संसारमा हामी सबैलाई केहि सामन्न्य टेक्नोलोजिकल ज्ञान हुन आवश्यक छ। हामी आज कम्प्युटर र स्मार्ट फोनेहरुमा प्रयोग हुने RAM (Random Access Memory) को बारेमा जान्ने छौ। R...Read more »
1) WAP to display "Hello World" on the screen
CLS
PRINT "Hello World!"
END
2) WAP to display your name address and school name.
CLS
CLS
PRINT "Your name"
PR...Read more »
1)
PROGRAMMING
PROGRAMMIN
PROGRAMMI
PROGRAMM
PROGRAM
PROGRA
PROGR
PROG
PRO
PR
P
CLS
a$ = "PROGRAMMING"
FOR i = LEN(a$) TO 1 STEP -1
PRINT LEFT$(a$, i)
NEXT i
END
2)
5
...Read more »
1) 8, 18, 32, 50 ...... up to 10th term.
FOR ... NEXT
WHILE ... WEND
DO ... LOOP
CLS
FOR i = 2 TO 10
PRINT i ^ 2 * 2;
NEXT i
END
CLS
i = 2
WHILE i <= 10
PRINT i ^ ...Read more »
QBASIC Programs to print series using different Looping Statements
1) 5, 25, 125, 625, 3125 .... up to 7th terms.
FOR ... NEXT
WHILE ... WEND
DO ... LOOP
CLS
a = 5
FOR ...Read more »
1)5
54
543
5432
54321
CLS
FOR i = 5 TO 1 STEP -1
FOR j = 5 TO i STEP -1
PRINT j;
NEXT j
PRINT
NEXT i
END
2)54321
5432
543
54
5
CLS
FOR i = 1 TO 5 STEP 1
FOR j = 5 TO...Read more »