Wednesday, September 27, 2017

[SEE QBASIC PROGRAM PRACTICE 2074] Download 300 Qbasic Programming Questions + 300 Qbasic Programs [Output(100), Debug(100) and Analytical Questions(100)]



SEE Qbasic Practice 2074

Download 300 Qbasic Programming Questions + 300 Qbasic Programs [Output(100), Debug(100) and Analytical Questions(100)] and 100 Theory Qbasic Modular Programming, File Handling and C Language Questions.


[Total 700 Questions Collections]

  1. Click here to download 100  Qbasic Debugging Questions

  1. Click here to download 100  Qbasic Output Questions

  1. Click here to download 100  Qbasic Analytical Questions

  1. Click here to download 300  Qbasic Programming Questions

  1. Click here to download 100 Theory Qbasic Modular Programming, File Handling and C Language Questions

13 comments:

  1. You did a great job. Thanks for all your efforts.

    ReplyDelete
  2. Thanks for all this. Keep it up!

    ReplyDelete
  3. how to open all of them with the help of dropbox?

    ReplyDelete
  4. WAP THAT ACCEPT DECIMAL NO. CONVERT INTO OCTAL REPERSENTATION

    ReplyDelete
    Replies
    1. CLS
      INPUT "ENTER DECIMAL NUMBER"; D
      WHILE D < > 0
      R = D MOD 8
      S$ = STR$(R) + S$
      D = D \ 8
      WEND
      PRINT "OCTAL EQUIVALENT VALUE="; S$
      END

      Delete
  5. Very happy to get qbasic and please try for output program

    ReplyDelete
    Replies
    1. https://seeqbasicomputer.blogspot.com/2018/09/qbasic-program-find-output-computer.html

      Delete
  6. Write the output of the following program:
    DECLARE SUB Display(T$)
    CLS
    T$="COMPUTER"
    CALL Display(T$)
    END
    SUB Display(T$)
    FOR C= 1 TO LEN(T$) STEP2
    D$=MID$(T$,C, 1)
    PRINT D$
    NEXT C
    ENDSUB

    ReplyDelete
  7. Sir can you upload above pdfs once again? They could not be downloaded.

    ReplyDelete
  8. trying to download above collection but gives dropbox error... please fix the problem

    ReplyDelete