Please enable JavaScript.
Coggle requires JavaScript to display documents.
comp 2 (Algorithms and
programming techniques (an algorithm is when…
comp 2
-
-
-
binary representation
-
-
-
-
-
Hex : Dec : Bin
1 = 1 = 0001
2 = 2 = 0010
3 = 3 = 0011
4 = 4 = 0100
5 = 5 = 0101
6 = 6 = 0110
7 = 7 = 0111
8 = 8 = 1000
9 = 9 = 1001
A =10 = 1010
B =11 = 1011
C =12 = 1100
D =13 = 1101
E =14 = 1110
F =15 = 1111
-
-
programming languages
-
-
-
-
-
Translators
-
-
-
Interpreter
Analyses, translates and executes each statement one at a time.
-
-
-
-
boolean logic
Boolean logic
Named after the nineteenth-century mathematician George Boole, Boolean logic is a form of algebra in which all values are reduced to either TRUE or FALSE. Boolean logic is especially important for computer science because it fits nicely with the binary numbering system, in which each bit has a value of either 1 or 0
-
-
-
-
-