Top "Basic" questions

BASIC (Beginner’s All-purpose Symbolic Instruction Code) is a family of high-level programming languages designed to be easy to use.

Python: Is there an equivalent of mid, right, and left from BASIC?

I want to do something like this: >>> mystring = "foo" >>> print(mid(mystring)) Help!

python basic
What is a good BASIC compiler for Mac OSX?

What is a good BASIC compiler for Mac OSX?

macos basic
VBA Autofilter not equal to

Sub Macro1() ‘Remove all except validated ActiveSheet.Range("$A$1:$H$5202").AutoFilter field:=8, Criteria1:<>"Validated" Activesheet.Range("$A$2:$O$99999").…

excel vba filter basic
What does REM stand for in BASIC?

Here's a blast from the past: what does "REM", the comment marker, stand for in BASIC? What's the origin of …

history basic
How to add a line in the middle of the program in TI-Basic Editor?

I am writing a simple Pong game in TI-Basic but the editor won't let me insert a line into the …

basic texas-instruments ti-basic
Casio - Basic programming

It's a bit urgent... ;) Someone i know have a Casio calculator (FX-9750 / Grahp35+). There is in the menu a functionnality …

basic calculator days
What are the difference between a BASIC GOTO and GOSUB statement

What are the difference between a GOTO and a GOSUB statements in BASIC programming language?

basic
Why did we bother with line numbers at all?

When you write something in BASIC, you are required to use line numbers. Like: 10 PRINT "HOME" 20 PRINT "SWEET" 30 GOTO 10 But …

basic line-numbers
What does the assembly instruction trap do?

"RTFM" A program typically issues a software trap when the program requires servicing by the operating system. The general exception …

assembly basic nios