Java An Introduction to Problem Solving and Programming Chapter 1.1 (Notes)

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/4

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

5 Terms

1
New cards

Hardware and Software

Hardware and Software make up a computer system

2
New cards

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.

3
New cards

Programs

ā€¢ A program is a set of computer instructions
ā€¢ An operating system is a program that supervises a computer's operation.

4
New cards

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.

5
New cards

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.