answersLogoWhite

0


Best Answer

...QBASIC program code...

name$="Jack"

startCharPos%=2

howManyChars%=2

PRINT MID$(name$,startCharPos%,howManyChars%)

...output...

ac

EXPLANATION

The MID$() function allows you to select characters from out of a string.

In the above case the string is,...

name$="Jack"

...where...

J= string position 1

a= string position 2

c= string position 3

k= string position 4

...thus, if we select MID$(name$,2,2)...

...this code is actually saying...select from the name...the character which begins at position 2 = a/and, extract 2 characters going along from there... = ac.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you use MID function in qbasic?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How to sort the sum of numbers in qbasic?

You use the relevant formula.


How do you combine two MID functions in an Excel String Formula?

You could use the CONCATENATE function or the & operator. The following two formulas will do the exact same thing. They both use the MID function to extract two pieces of text and then combine them into one piece of text. =CONCATENATE( MID( A2, 2, 3 ), MID( A3, 2, 4 ) ) =MID( A2, 2, 3 ) & MID( A3, 2, 4 )


What extension would a file saved in Qbasic have?

the extensions of qbasic are that, there are only 80 pixels to write in the qbasic


How do you download QBasic?

In order to Download Qbasic you may do one, both or none of these two things: 1.) Go to "http://www.softpedia.com/get/Programming/Coding-languages-Compilers/Qbasic.shtml" and click download or 2.) use "Google.com" with the keywords Qbasic free download to find another website with a free qbasic downlaod.


Is there any keyword in c or c plus plus like the function inkey in qbasic?

Using TurboC? kbhit and getch are your friends


Why are rem statements important in qbasic programming?

qbasic is important because its technology


How do you find the product of five numbers in Qbasic?

Most computer languages use the asterisk, "*", for multiplication.


How do you calculate mid value in statistics using Excel?

You would use the MEDIAN function. If the cells with your data were from A2 to D50, then the function would be:=MEDIAN(A2:D50)


What is the function of equals MID in Microsoft Excel?

The MID function is used to extract some text from the middle of an existing piece of text. If you wanted to get characters from the start of text, you can use the LEFT function, but that is not sufficient if you wanted to start extracting text from the middle of a piece of text. Using the MID function you can start at any point in the text and get an amount of characters from it. You specify the text, then the starting point and then the amount of characters you want. For example, the following will give you BCD by starting at the second character and getting three characters from it. =MID("ABCDEF",2,3) There are lots of times MID can be useful. Sometimes you can use the find function to find a character to start from, like finding the first space, and starting from there. So suppose you have a list of names that include titles like Mr. or Mrs. and you want to find the first letter of the surname. That would require finding the first space and then the next character. So if you had Mr. Smith in cell B2, to extract the S you would use the MID function and the FIND function like this: =MID(B2,FIND(" ",B2)+1,1)


Who had invent QBASIC?

apni maa se puch madherchod kis kis base pe use choda gya tha..... whi btayegi ki kaun QBASIC ka khoj kiya tha..


Is there any sqra function in qbasic?

PRINT SQR(9) ...output... 3 (Thus, giving you the square root of the number 9; I presume this what your question meant...?)


How do you write a Qbasic program to display these Numbers-0112358132134?

you do this 10 print "0112358132134" use the whole of the thing