Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does PRINT'ing a true boolean expression output -1?

Tags:

c64

basic

In Commodore 64 BASIC V2, PRINT'ing a true boolean expression outputs -1:

READY.
A=(5=5)

READY.
PRINT A
-1

Why -1 and not 1?

enter image description here

like image 314
Max Avatar asked Mar 09 '14 15:03

Max


People also ask

Why is True +False 1?

1 is considered to be true because it is non-zero. The fourth expression assigns a value of 0 to i. 0 is considered to be false.

What happens if you print a Boolean?

The println(boolean) method of PrintStream Class in Java is used to print the specified boolean value on the stream and then break the line. This boolean value is taken as a parameter. Parameters: This method accepts a mandatory parameter booleanValue which is the boolean value to be written on the stream.

What is the output of print or true?

In programming languages value of True is considered as 1. whereas false is zero. therefore In Boolean algebra True + False=1+0=1.

What is the output of bool a true cout << A?

Use std::boolalpha in cout to Print Boolean Values in C++ If it's set to true , it displays the textual form of Boolean values, i.e. true or false , but when it is set to false , we get bool output as 0 and 1 only.


3 Answers

Commodore Basic doesn't have a boolean data type. A boolean expression evaluates to a number, where 0 means False and -1 means true.

As there is no boolean data type there are no boolean type expressions. You can use any numeric expression in an IF statement, and it will interpret any non-zero value as True.

Some languages where a boolean value is numeric or where it can be converted to a numeric value uses -1 to represent a true value. For an integer value 0 all bits are cleared, and for -1 all bits are set, so they can be seen as natural complements for each other.

Eventhough Commodore Basic doesn't use integer numbers but floating point numbers, the value -1 was supposedly chosen because some other languages uses it.

like image 98
Guffa Avatar answered Nov 09 '22 17:11

Guffa


Short answer

Why -1 and not 1?

It's just a convention


Some speculation...

The reason underlying the choice for this convention may be related to the internal representation of integers numbers on most platforms:

Suppose a boolean value is stored in a 16 bits wide integer; false is 0 (every bit unset).

0 => 00000000 00000000

It makes sense to agree upon another convention where true is all bits set:

11111111 11111111

(a very reasonable choice since all 1 is the bitwise NOT of all 0)

The decimal representation of a signed integer whose bits are all set is -1

-1 => 11111111 11111111

While the binary representation of 1 is

1 => 00000001 00000000 (on a little endian platform).

So that's why -1 and not 1: is just a convention; but if you look at the binary representation of the value you may agree that the convention makes sense.

However this convention is far from being universally adopted despite all the above considerations. On many languages true casted to a numeric value is 1.


An important note about the code you posted:

You wrote

A=(5=5)

A is a real variable whose value is represented by 5 bytes (1 for exponent, 4 for mantissa).

The internal C64 representation of the real value 0 is all bits 0, but the representation of -1 is far from being all bits 1.

(all bits 1 would lead to the value -1.70141183e+38)

So again C64 Basic just sticks to a convention.


Finally let's explain the behaviuour of the IF statements in your code.

Any value different from 0 is evaluated as true in an IF statement (this happens on most languages, maybe all).


Bottom note:

If you want to take a look at the internal representation of a C64 variable (integer or real only, not strings) you may use the following code:

READY.

10 REM THE VARIABLE TO INSPECT
20 A=(5=5)
30 REM THE ADDR. OF THE FIRST VARIABLE
40 B=PEEK(45)+256*PEEK(46)
50 REM DISPLAY THE VAR'S 7 BYTES
60 FOR C=B TO B+6
70 PRINT C;": ";PEEK(C)
80 NEXT C

RUN
 2227 :  65
 2228 :  0
 2229 :  129
 2230 :  128
 2231 :  0
 2232 :  0
 2233 :  0

Note the first two addresses (2227, 2228) store the variable's name (65, 0 for A)

You may try declaring the variable as integer and see the result with

20 A%=(5=5)
like image 40
Paolo Avatar answered Nov 09 '22 16:11

Paolo


There is a way that this may be used, by customising a for loop, i.e., if you wanted something to happen until a key is pressed, one might:

0 for i=-1 to 0
1 rem logic here ...
10 get a$: i=(a$=""): next i

This is the same sort of logic as a do...while loop.

Edit - If you specifically wanted 0 to be false and 1 to be true, you could define a function as follows (I forgot about the ABS keyword as I've not used it in probably 20 years :-|) :

0 def fn b(x) = abs(x)
1 i = 7
2 a$ = "hello"
3 if fn b (i=6) then print "i is 6"
4 if fn b (i<10) then print "i is less than 10"
5 if fn b (a$="hi") then print "hey there!"
6 if fn b (a$="hello") then print a$
like image 39
Shaun Bebbington Avatar answered Nov 09 '22 17:11

Shaun Bebbington