Quizzes at Fun Trivia Fun Trivia | quizzes Quizzes | games Games | community People | services Services | help Help | me Me
New Player - Log In
Currently 11648 players online.   Trivia games, quizzes, and contests - FREE !     Get Started! quiz register

Basic BASIC (for Old School Computers)

Created by eauhomme

Fun Trivia : Quizzes : Software and Programming
Basic BASIC for Old School Computers game quiz
"Before Mac and PC, before C++, before Turbo Pascal, we learned to program an Apple II, Commodore 64, Atari 800, TRS-80, or a TI-99/4A. Whatever machine we used, we worked in BASIC. What do you remember about the programming language of the 70s and 80s?"

15 Points Per Correct Answer - No time limit  



1. To begin with, why was BASIC called BASIC?
    It was an acronym
    It was named after Yugoslavian programmer Vladimir Basic
    It was the basic language that computers were built to use
    It originally ran on Basis terminals


2. In most versions of BASIC, you could use a symbol as a shortcut for the PRINT command. What symbol would you use?
    #
    *
    $
    ?


3. If you wanted the program to pause for a few seconds, then continue (without you having to press any key or do anything else), which of the following one-line command sequences would you use?
    10 A$=INKEY$: IF A$="" GOTO 10
    10 FOR X=1 TO 1000: NEXT X
    10 WAIT 1000
    10 PAUSE 5


4. In BASIC, you had numeric variables and you had string variables. Numeric variables were numbers, plain and simply. LET X=45, for example. String variables were letters, numbers, symbols, phrases, etc. "This sentence could be contained in a string variable." What symbol after a letter signified a string variable?
    # (LET X#="Word")
    $ (LET X$="Word")
    @ (LET X@="Word")
    & (LET X&="Word")


5. 10 PRINT "What is the capital of Washington State?";
20 INPUT A$

Which of the following lines WOULD NOT accomplish the same as the above (asking the user the capital of Washington State and waiting for a response)?
    10 INPUT "What is the capital of Washington State?";A$
    10 PRINT "What is the capital of Washington State?"; A$
    10 PRINT "What is the capital of Washington State?";: INPUT A$
    10 B$="What is the capital of Washington State?": PRINT B$;: INPUT A$


6. 10 PRINT "What is the capital of Washington State?";
20 INPUT A$
30 IF A$="Olympia" THEN GOTO 50
40 PRINT "Sorry, you're incorrect.": GOTO 60
50 PRINT "You're Right!"
60 PRINT "What is the largest city in Washington State?";: INPUT B$

Which of the following versions of line 30 will also work?
    30 IF A$ "Olympia" THEN GOTO 50
    30 A$="Olympia" THEN GOTO 50
    30 IF A$="Olympia" THEN 50
    30 IF A$=Olympia THEN GOTO 50


7. Which aspect of BASIC was particularly frustrating to many computer users?
    Different computers' versions used completely different commands for routine things
    BASIC could not handle any program with more than 1024 lines
    BASIC was incapable of handling complex arithmetic
    Once you finished writing a subroutine, it was very difficult to go back and change it


8. In BASIC, you would use the GOSUB command to send the computer to a subroutine (a section of the program designed to perform a specific routine or task). What was the command used to send the program back from the subroutine?
    GOTO
    RETURN
    BACK
    DONE


9. As you were working on your program, you would occasionally need to see what the program looked like. To review the program, line by line, you would type a command. What command would display all the lines of the program for your review?
    DISPLAY
    PROGRAM
    LINES
    LIST


10. Some, but not all versions of BASIC had a "Trace" feature which would display each line number of a program while the program was running so as to make it easier to debug. In most cases, the command used to turn on this feature was the title of a Disney movie character. What character name would turn on the trace feature?
    MICKEY
    TRON
    HERBIE
    BUGS


Copyright, FunTrivia.com. All Rights Reserved.
Legal / Conditions of Use