answersLogoWhite

0

How do you call up qbasic programming in windows 7?

Updated: 11/23/2022
User Avatar

IsaacKelechi

Lvl 1
11y ago

Best Answer

QBasic is no longer offered with Microsoft Windows as of Windows XP/2000. The only way to obtain a working copy would be to install Windows 3.1, Windows 95, or Windows 98 (or a older version of MS-DOS) on the Windows 7 computer. Despite the fact that all of these operating systems are obsolete and no longer supported or sold, Microsoft still insists that you have a legal copy of the software, so interested parties should look at buying a used copy of one of the aforementioned operating systems. There are new versions of Basic that are available for free, such as FreeBASIC and Microsoft Visual Basic Express.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you call up qbasic programming in windows 7?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does Windows 7 call a back up of the entire Windows 7 volume?

system image


How they generate Microsoft?

Through programming. They take up a basic language derive one if necessary and then create the magical windows.


Is qbasic a high level language?

The QBASIC program actually comes in 2 different flavors... A> QBASIC interpreter program: QBASIC Version 1.1 B> QBASIC compiler program: QBASIC 4.5/or, QB64/or, -etc. ...so, the answer is that this programming language comes in both forms: 'interpreter/compiler' versions; and, you have to select which of these you would prefer to download and use. *NOTE*: The compiler version of the language tends to be much larger; whereas, the interpreter version of the language tends to be small/very compact, indeed; thus, the interpreter tends to take up far less disk space. Many people start off their programming career by using QBASIC version 1.1 'interpreter' program; in order to learn 'how to' program. The interpreter version of the program can only create plain text (.bas) files; the which code CANNOT be shared with others; (not unless the persons who you are sharing this type of code with do already have a copy of the QBASIC interpreter program installed on their own computer). Then, later on, down the line...when they have become fully capable programmers themselves; they go and download a QBASIC 'compiler' program version, instead; which will allow them to go and create stand alone (.exe) program files that they can share with anybody. This is because (.exe) program files can RUN/execute entirely independently of the QBASIC program itself.


Which Windows 98 component allows a computer to receive an incoming call?

The component in Windows 98 that allows an incoming telephone call is Windows 98 Dial-up Networking. It has a dialer to make outgoing calls also.


What should you know before start with visual basic language?

My answer to this question would be go and learn QBASIC programming language, first; as it is the 'base' language which underlies most Microsoft BASIC related programming languages, including:- Visual BASIC VBScript/Visual BASIC Script VBA/Visual BASIC for Applications VB.NET/Visual BASIC.NET -etc. QBASIC, however, doesn't use objects to do programming with...like these other languages do; and, I personally do believe this fact makes it quicker, simpler, far more straight forwards, and, easier to learn. Then, once you've already learned the QBASIC programming fundamentals, such as:- String literals/Numeric literals Variables: String, Numeric: integer/Single/Double Variable scope: Global/Local Loops: Do/Loop, For/Next If/Then/Elseif/Else/End if Select Case/End Select Logical operators/Relational Operators/Mathematical Operators Sub/End Sub,Function/End Function Filing: Serial/Binary Graphics; Text based/Drawing based/Screenmodes/Colors Sounds -etc. Then, you can consider expanding your knowledge by moving on to go study more advanced programming languages; like those already mentioned up above. Of course, it is possible to go and learn Visual BASIC without having to go learn QBASIC, first; indeed, many VB programmers have succeeding in doing things exactly that way. But, having learned QBASIC, first, myself; and, then, next, moved on to go learn Visual BASIC; I can honestly say that QBASIC certainly paved my way...thus, making learning VB feel like being a total BREEZE...! When I look back, I realise that if I had not gone and learned QBASIC, first; then, I might have had a really difficult time with struggling to go learn VB, afterwards.


Is turbo c is available for windows 7?

Yes, it is available for windows 7. You can run Turbo C in windows 7 basically using DOS Box emulator. Turbo C works fine with windows 7. Up to now, many programmers use Turbo C in programming C in windows environment.


How do you answer a Skype call?

How do I answer a call to my PC. I have windows live.


What do you call the executable file for Microsoft back file for windows 3x?

norton back up


What is the hammer do on zombies map 4 do on call of duty 5?

boards up the windows the zombies come thru


How do you open a Qbasic file?

QBASIC GRAPHICS There any many different things you can draw in QBASIC; ranging from... -dots -lines -rectangles -circles -shapes empty/or, filled in(painted) -you can even do LOGO style programming to draw graphics with; by joining up connected lines -animations are possible, too ==== QBASIC BUILT-IN HELP FILE + CODE EXAMPLES In order to view the QBASIC built-in Help file...; first, load the QBASIC program itself...; and, then, do a combination key press of: [SHIFT] + [F1] Use the built-in QBASIC Help file to learn more about how to use these 'graphic related' commands, and, more...! The QBASIC Help file also contains plenty of 'example codes'; which you can just use 'copy & paste'; then, RUN...to see what the output effect will be...???


How do I go about replacing Windows backup software which was accidentally destroyed?

I destroyed my windows back up software when I was cleaning my carpets. How do I go about getting a replacement? Do I need to call microsoft?


How do you add numbers in qbasic?

-- Think of a name for the sum, like 'S'.-- Tell qbasic what 'S' is the sum of.S = 41 + 61 + 2 + 84 + 136-- If you want to see it on the screen, thenPRINT Sand the sum pops up. It looks like this on the screen:324