1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Hardware and Software
Hardware and Software make up a computer system
Hardware and Memory
ā¢ The CPU, or central processing unit, or processor, performs the instruction in a program.
ā¢ Main memory is volatile: auxiliary memory is not.
ā¢ Main memory consists of addressable eight-bit bytes.
ā¢ Group of adjacent bytes can serve as a single memory location.
ā¢ A file is a group of bytes stored in a auxiliary memory.
ā¢ A directory or folder, contains a group of files.
ā¢ Each byte can hold eight binary digits, or bits, each of which is either 0 or 1.
Programs
ā¢ A program is a set of computer instructions
ā¢ An operating system is a program that supervises a computer's operation.
Programming Languages, Compilers, and Interpreters
ā¢ Java is a high-level language.
ā¢ Computers execute a low-level language called machine language.
ā¢ Compile once, execute often.
ā¢ Compilers translate source code into object code.
ā¢ Interpreters translate and execute portions of code at a time.
Java Bytecode
ā¢ A computer translate Java code into bytecode.
ā¢ The JVM is an interpreter that translate and executes bytecode.
ā¢ Java bytecode runs on any computer that has a JVM.