EXAM 1 Flashcards
Hardware
The physical components of a computer
Main Memory
Storage locations that are directly accessible by the processor(AKA Primary Storage)
Binary
A number system only using 0’s and 1’s
Syntax Error
Incorrect lines of code in a program
Binary Digit(bit)
The smallest unit of data a compute can process and store (0’s and 1’s)
Software
Instructions that tell a computer what to do
Secondary Storage
long term storage component of a computer, such as hard disk drives or solid state NVRAM
System.out
Refers to an object, used to display output to the computer console
Logic Error
a bug causing a program to run incorrectly, but not cause the program to crash
Byte
a unit of data that Is 8 binary digits (0’s and 1’s) long
CPU
Central Processing Unit, carries out the processing of the computers systems and apps
Machine Code
low level machine code written in binary and hexidecimal digits
Pseudo Code
readable description of what a program or algorithm should do
Algorithm
A set of instructions designed to complete a task
Word
a unit of data of a defined bit length that can be addressed and moved between storage and the computer processor.
Variable
a named container for a specific type of data (string, bits, double, int, float …)
Scope
The area in a computer program that a variable can be recognized an used (variables cannot be used outside of the method they are initiated in)
reserved words
words that cannot be used as variable names, classes, or methods (boolean, byte, abstract, char, class …)
character
a data type that is used to store a single character ( always use single quotes ‘’ to store a char)
comment
notes readable by the user but ignored by the compiler (/**/, //)