Copy Link
Add to Bookmark
Report

Commodore Trivia 13

eZine's profile picture
Published in 
commodore trivia
 · 3 years ago

  

Not to leave you in the dark for too long, here are the trivia
answers to the previous edition of Commodore Trivia. I am posting the
answers at this time, and will post the scores and winners in a few
days. This time frame is set up to allow time for any discussions on the
correctness of these answers. By this time, the newest edition of
trivia has been posted. I encouarage you to enter it.

This edition of trivia answers has been posted to the USENET newsgroups:
comp.sys.cbm, alt.folklore.computers, and comp.sys.amiga.advocacy. It
ha also been posted to the FIDO Echo CBM. This file is copyright by
Jim Brain. It may be reposted on other networks, provided the file is not
changed (other than typos). This file is public domain. It may be used in
newsletters, magazines, etc., but I always appreciate knowing where it
goes. If you are planning on reposting or otherwise retransmitting this
file, it is best to wait a few days after the date of this post for any
errors to be shaken out.

Please mail any new questions for upcoming trivia (with answers) to my
address.

This edition and previous editions the trivia can be obtained from my
mailserver. Just mail my Internet address with the following in the
subject line (exactly):
FGET: trivia1

This will retrieve the first edition of the trivia. Replace the
number with the edition you want.

Here are the answers to Commodore Trivia Edition #13 for December, 1994

Q $0C0) The early 1541 drives used a mechanism developed by ______. Name
the company.

A $0C0) Alps.

Q $0C1) On later models, Commodore subsequently changed manufacturers
for the 1541 drive mechanism. Name the new manufacturer.

A $0C1) Newtronics.

Q $0C2) What is the most obvious difference(s). (Only one difference is
necessary)

A $0C2) Alps: push-type latch, round LED.
Newtronics: lever-type latch, rectangular LED.

Q $0C3) On Commodore BASIC V2.0, what answer does the following give:
PRINT (SQR(9)=3)

A $0C3) 0. According to Commodore BASIC, the answer should bby -1, which
is the BASIC value of TRUE. However, the above equation is NOT
true. Doing PRINT SQR(9) yields 3, but doing PRINT (SQR(9)-3)
yields 9.31322575E-10 (C64). This anomaly can be attributed to
roundoff errors in the floating point math routines in Commodore BASIC.

Q $0C4) In Commodore BASIC (Any version) what does B equal after the following
runs: C=0:B=C=0

A $0C4) B = -1. The second statement is the one to look at. The second
equals sign is treated as a comparison, while the first is treated
as a assignment. B gets set to the outcome of the comparison, which
is TRUE (-1).

Q $0C5) The first PET cassette decks were actually _______ brand cassette
players, modified for the PET computers. Name the comapny.

A $0C5) Sanyo. Specifically, Model M1540A. What a model number!

Q $0C6) In Commodore BASIC (Any version), what happens if the following
program is run:

10 J=0
20 IF J=0 GO TO 40
30 PRINT "J<>0"
40 PRINT "J=0"

A $0C6) On BASIC 2.0 or greater:

?SYNTAX ERROR IN 20
READY.

On BASIC 1.0: (found on the PET 2001 series)

J=0
READY.

BASIC 1.0 totally ignored spaces, so line 20 became "IFJ=0GOTO40".
That statement would be correctly parsed, sicne it contains the "GOTO"
keyword.

However, on BASIC 2.0 or greater, spaces weren't ignored so completely,
and the "TO" in "GO TO" would be tokenized separately, so some code was
added to BASIC to check to "GO". As the code that accepts GOTO as a special
case for THEN after an IF statement wasn't patched this way, the above fails,
because GO is not a valid keyword after IF. The statement SHOULD
work correctly, but does not because of this failure to fix the IF
command parsing.

On BASIC 2.0 or greater, substituting the following line for line
20 will cause the program to work:

20 IF J=0 THEN GO TO 40

Q $0C7) In question $068, we learned how Jack Tramiel first happened upon the
name "COMMODORE". According to the story, though, in what country
was he in when he first saw it?

A $0C7) Germany.

Q $0C8) On the Commodore user port connector, how many edge contacts are
there?

A $0C8) 24. Two rows of 12 contacts each.

Q $0C9) On most Commodore computers, a logical BASIC screen line can contain
up to 80 characters. On what Commodore computer(s) is this not true?

A $0C9) According to Commodore documentation, a _physical_ screen line is
defined as one screen line of characters. A _logical_ screen line is
defined as how many _physical_ lines can be chained together to
create a valid BASIC program line.

With that in mind, most Commodore computers chose a _logical_
screen line that was a multiple of the screen width. This works fine
for 40 and 80 column screens, but what do we do with the VIC-20, with
its 22 column screen. Solution: make the _logical_ line length equal
to 4 _physical_ lines, or 88 columns.

When the Commdore 128 was introduced, the number rose to 160
characters, which is 4 _physical_ lines in 40 column mode, or
2 _physical_ lines in 80 column mode. However, you can only take
advantage of this in 128 mode. 64 mode is limited to 80 characters.

To add to all this confusion, a valid BASIC program line (in memory)
can actually be 255 (tokenized) characters long, but creating such
a long line cannot be done from the built-in editor in direct mode.

The AmigaBASIC, available on the Amiga, also does not have the 80
column line limit. However, that BASIC is SOOO much different that
I am not surprised. The older CBM BASICs, on the other hand, were
all derivatives of the original Level 1 BASIC for the PET.

Q $0CA) If a file is saved to a Commodore Disk Drive with the following
characters: chr$(65);chr$(160);chr$(66), what will the directory
entry look like?

A $0CA) The filename will show up as "A"B, with the 'B' showing up to the
right of the '"' mark. This could be used to make program loading
easier. A file that showed up as "filename",8,1 could be loaded
by simply hitting shift-run/stop on that line.

Q $0CB) What is the maximum length (in characters) of a CBM datasette
filename?

A $0CB) References I have on hand say 128 characters. However, the actual
code on the 8032 and the C64 acts as though 187 characters can
actually be sent (tape buffer-5 control bytes = 192-5=187). The
references that claim 128 characters are Nick Hampshire's
_The VIC Revealed_ and _The PET Revealed_. ANyone care to lay
this one to rest?

Q $0CC) How many keys are on a stock Commodore 64 keyboard?

A $0CC) 66 keys. This is the same number as found on the VIC-20 and the
Commodore 16.

Q $0CD) Commodore BASIC uses keyword "tokens" to save program space. Token
129 becomes "FOR". What two tokens expand to include a left
parenthesis as well as a BASIC keyword?

A $0CD) TAB( (163) and SPC( (166).

Q $0CE) There are 6 wires in the Commodore serial bus. Name the 6 wires.

A $0CE) 1) Serial /SRQIN
2) GND
3) Serial ATN IN/OUT
4) Serial CLK IN/OUT
5) Serial DATA IN/OUT
6) /RESET

Q $0CF) On the Commodore datasette connector, how many logical connections are
there?

A $0CF) 6. Opposing pins on the connector are hooked together electrically.

End of Commodore Trivia Edition #13!


Jim Brain
brain@mail.msen.com
602 North Lemen (New address)
Fenton, MI 48430
(810) 737-7300 x8528

← previous
next →
loading
sending ...
New to Neperos ? Sign Up for free
download Neperos App from Google Play
install Neperos as PWA

Let's discover also

Recent Articles

Recent Comments

Neperos cookies
This website uses cookies to store your preferences and improve the service. Cookies authorization will allow me and / or my partners to process personal data such as browsing behaviour.

By pressing OK you agree to the Terms of Service and acknowledge the Privacy Policy

By pressing REJECT you will be able to continue to use Neperos (like read articles or write comments) but some important cookies will not be set. This may affect certain features and functions of the platform.
OK
REJECT