Class Assignment 1
Computer Systems
What is a computer? (hardware)
- CPU
- RAM
- DISK(s)
Computer Systems
What is a computer? (hardware)
- CPU
- Hz (THz, GHz, MHz, KHz)
- FlOPS? (TFlOPS, GFlOPS, MFlOPS)
- MIPS?
Computer Systems
What is a computer? (hardware)
- RAM
- DISK(s)
- Bytes
- KB, MB, GB, TB, PB
- Bits
- Kb, Mb, Gb, Tb, Pb
Computer Systems
Bits and Bytes
- 8 bits is a byte
- The basic structure of a computer
- powers of 2
Computer Systems
What we are using:
- CIRT
- AIX (UNIX)
Computer Systems
What we are using:Shameless plug...
- CIRT
- AIX (UNIX)
GET AN ACCOUNT!!
Computer Systems
Operating System Fundamentals
- File System
- Memory Structure
CS151 -- Shawn Stoffer
File Systems
Files
Types
- Executable
- Readable
- Writable
- Directories
- Special
CS151 -- Shawn Stoffer
Memory Structure
Everything resides in "Memory"Memory usage
Variable Types/Sizes
CS151 -- Shawn Stoffer
Memory Structure
Everything resides in "Memory"Variable Types/Sizes
- double = 8 bytes
- int = 4 bytes
- short = 2 bytes
- char = 1 byte
Memory Structure
All objects use memoryYour programs are simply a special case of thisLine-by-Line execution
- easy debugging
- testing
CS151 -- Shawn Stoffer