what is the basic in basic
Answers
Answer:
BASIC is a family of general-purpose, high-level programming languages whose design philosophy emphasizes ease of use. The original version was designed by John G. Kemeny and Thomas E. Kurtz and released at Dartmouth College in 1964. Wikipedia
First appeared: May 1, 1964; 56 years ago
Designer: John G. Kemeny
Paradigm: Non-structured, later procedural, later object-oriented
Designed by: John G. Kemeny, Thomas E. Kurtz
Answer:
Simple basic language
Stands for "Beginner's All-purpose Symbolic Instruction Code." BASIC is a computer programming language that was developed in the mid-1960s to provide a way for students to write simple computer programs.
Explanation:
BASIC originally used numbers at the beginning of each instruction (or line) to tell the computer what order to process the instructions. Lines would be numbered as 10, 20, 30, etc., which would allow additional instructions to be placed between commands later on if needed. "GOTO" statements enabled programs to loop back to earlier instructions during execution. For example, line 230 of a BASIC program may have an "if" clause that tells the computer to jump back to line 50 if a variable is less than 10. This instruction might look something like this:
230 IF (N < 10) THEN GOTO 50