6
votes
Accepted
Why was the caret used for exponentiation in BASIC?
The BASIC article on wikipedia provides a link to the first user manual created by the inventors of the language. At that time, October 1964, the power operator was an ↑ up arrow (page 9). It was ...
5
votes
Why was the caret used for exponentiation in BASIC?
I think the proper answer is the one you already preemptively rejected.
It is not a case of simply using existing mathematical notation (unlike + and -), since the ^ symbol is not really used in ...
5
votes
Why do some BASIC programmers put a redundant END statement at the end of the code?
Furthermore, in some BASIC interpreters that I have used ... ("HP2000 Access BASIC," anyone? Bah ... these kids today ...) ... the END statement was required at the end of the program, and nowhere ...
2
votes
How does Matplotlib / other GUIs work to draw the individual pixels?
I would say at this level of previous knowledge it suffices to say that ultimately, pixels are just memory locations that can be accessed using ordinary read and write operations in any language that ...
1
vote
How does Matplotlib / other GUIs work to draw the individual pixels?
Drawing is translated to fairly primitive commands at the lowest level. Such as
Draw Line/Ellipse/Polyline/spline
Fill ellipse/rectangle/polygon
Draw pixels from image X at position Y using blending ...
Only top scored, non community-wiki answers of a minimum length are eligible
Related Tags
basic × 15programming-languages × 3
programming-practices × 2
history × 2
interpreters × 2
architecture × 1
c++ × 1
php × 1
c × 1
open-source × 1
android × 1
clean-code × 1
compiler × 1
frameworks × 1
gui × 1
naming-standards × 1
skills × 1
ide × 1
books × 1
experience × 1
languages × 1
operators × 1
microsoft × 1
procedural × 1
constructs × 1