
18 CHAPTER 1 Introduction to Programming and the Java Language
TABLE 1.6 Selected Unicode Characters and Their Decimal Equivalents
Unicode Character Decimal Value
NUL,the null character (a nonprintable character) 0
* 42
1 49
2 50
A 65
B 66
a 97
b 98
} 125
delete (a nonprintable character) 127
1.4 Programming Languages
1.4.1 High- and Low-Level Languages
Programming languages can be categorized into three types:
■
machine language
■
assembly language
■
high-level language
In the early days of computing, programmers often used machine language
or assembly language. Machine language uses binary codes, or strings of 0s
and 1s, to execute the instruction set of the CPU ...