반응형
(해당 강의노트는 한빛아카데미의 <쉬운 영어로 읽는 최신 전산 영어 : 3판>을 기반으로 작성되었습니다)
1장 파트 2
CH01) Introcudtion to Computer System
Section 02 The Structure of Computer(2)
Memory
- volatile memory
- 휘발성 메모리
- 데이터를 유지하기 위해서는 Power가 필요함
- Random Access Memory(RAM)
- Vs. Sequencial Acess Memory
: 최초의 메모리 장치는 천공카드임. 이는 순차적으로 메모리를 저장하는 방식이었음 - Vs. Direct Access Memory
: 데이터 헤드가 있어서 헤드의 위치에 따라 데이터를 읽을 수 있음, - Sequencial Acess Memory보다 데이터 접근 속도가 빠름
- Vs. Sequencial Acess Memory
- RAM에 있는 데이터는 주소를 가지고 있음
- CPU가 데이터를 읽을 때 주소를 사용함
- CPU는 어떤 주소든 읽을 수 있음
Essential Computer HW
- Storage devices(Secondary Memory)
- 데이터와 프로그램을 영구적을 저장
- RAM과는 다름
- Power 가 꺼져있을 때도 데이터 저장 가능
- 비휘발성 메모리임
- ROM : Read Only Memory
- BIOS : Basic IO System
Describing Storage Devices
- Storage Terms
- Media : 데이터를 저장하는 material을 일컬음
- Q: what kind of media is for your network?
- A : optiocal/LAN Cable
- Storage devies : 미디어를 관리하는 디바이스
- Storage 방식
- Magenetic devices : magnet(자성)을 사용
- Optical devices : lasers 사용
- Solid-state devices : physical switches 사용(자성이나, 반도체적임)
- Media : 데이터를 저장하는 material을 일컬음
- Magnetic Storage Devices
- 가장 흔한 형태의 저장장치
- 예: 하드드라이브, floppy 드라이브, 테이프
- 모든 마그네틱 드라이브는 동작과정이 비슷함
- Data Storage and retrieval
- 미디어는 철로 덮여져 있음
- 리드/라이트 해드는 마그넷임
- 미디어에다가 마그넷이 charge를 읽음
- Positive charge is a 1
- Negative charge is a 0
- Drive가 바이너리로 변환 시킴
- Hard Disk
- 2개 이상의 알루미늄 플래터로 이루어짐
- 각 플래터는 2면이 있음(양면)
- 5,400~15,000 RPM 까지 회전함
- 데이터를 찾는 속도가 9.5ms 혹은 그 이하임
- 테이프 드라이브
- Best used for
- 백업 용도
- 비주기적인 데이터의 접근
- 가격 대비 용량이 큼
- 느린 순차 접근
- Best used for
- Diskettes
- aka. floppy disks
- disk drive로 읽음
- 가장 흔한 형태의 저장장치
- Optical Storgae Devices
- CD-ROM
- READ using a laser
- Lands, binary 1, reflect data
- Pits scatter data
- Written from the inside out (안에서 바깥으로 읽음)
- CP speed는 오리지널에 따라서 다를 수 있음
- Standard CD는 650MB
- READ using a laser
- DVD-ROM
- Digital Video Disk
- Use both sides of the disk
- Capacities can reach 18GB
- CD-ROM
- Solid State Devices
- Flash memory
- 카메라, USB, RAM에 있음
- Solid-state disks
- Large amount of SDRAM
- RAM
- Non volatile storage
- Extremely fast
- Flash memory
Affecting Processing Speed
- Virtual RAM
- Computer is out of actual RAM
- File that emulates RAM
- Computer swaps data to virtual RAM
- Least recently used data is moved
- The Bus
- Electronic pathway between components
- 컴퓨터 부품간의 전기적으로 연결되어 있는 통로
- Expansion bus connects to peripherals
- 확장버스는 주변장치랑 연결되어 있음
- System bus connects CPU and RAM
- Bus width is measured in bits
- 버스 너비(차선)는 비트 단위로 측정됨
- Speed is tied to the clock
- Electronic pathway between components
- Cache memory
- 매우 빠른 메모리
- 최근 혹은 자주 사용되는 데이터를 저장
- 컴퓨터 처리 속도를 높여줌
- 대부분의 컴퓨터는 여러개의 캐쉬를 가지고 있음
- L1,L2,L3 캐쉬
- L1 : 최근 사용된 데이터 저장
- L2 : 사용할 데이터 저장
- L3 : 사용할 가능성이 있는 데이터를 저장
Esential Computer HW
- IO devieces
- Allows the user to interact
- Input devices accept data
- ex : Keyboard, mouse
- Output devices deliver data
- ex : Monitor, Printer, Speaker
- Some devices are input and output
- Touch screens
How Computers Represent Data
- Number systems
- counting하는 방식(manner)
- 여러개의 진수체계가 존재
- 십진수 체계 : Decimal number System
- 사람이 사용하는 숫자세는 방식
- Contains ten distinct digits
- Digits combine to make larger numbers
- 이진수 체계 : Binary number System
- 컴퓨터가 사용하는 숫자세는 방식
- 0,1 두개를 사용
- Bits and bytes
- 이진수가 bit를 만들어냄
- Bit represents a switch
- on(1) , off(0)
- Byte == 8-bit
- Byte represents one character
- char type == 1byte
- Text Codes
- Converts letters into binary
- Standard codes necessary for data transfer
- ASCII
- American English Symbols
- Unicode
- All Languages on the planet
SW
- SW, also called programs, consists of organizes sets of instructions for controlling the computer
- Some programs exist for the computer's use, to help it manage its own task and devices
- Other programs exist for the user and enable the computer to perform tasks for you, such as creating documents.
- Tells the computer what to do
- Two types
- System SW
- application SW
반응형
'Computer Science > SW 영어' 카테고리의 다른 글
[쉬운 영어로 읽는 최신 전산 영어] 1 Introduction to Computer System(2) (0) | 2020.09.23 |
---|---|
[쉬운 영어로 읽는 최신 전산 영어] 1 Introduction to Computer System(1) (0) | 2020.09.13 |