├── .idea ├── .gitignore ├── Tech-Interview-Question.iml ├── misc.xml ├── modules.xml └── vcs.xml ├── Database ├── DB LOCK.md ├── DB클러스터링 │ ├── active-active.png │ ├── active-standby.png │ ├── common.png │ ├── dynamic-sharding.png │ ├── entity-group.png │ ├── hash-sharding.png │ ├── replication.png │ └── sharding-partitioning.png ├── DB클러스터링_리플리케이션.md ├── ElasticSearch.md ├── Index.md ├── RDB vs NoSQL.md ├── README.md ├── Redis.md ├── Transaction.md ├── 동시성 제어.md ├── 스키마 c60952486d774377974451a653b686ef.md ├── 스키마 │ ├── 스키마 c60952486d774377974451a653b686ef │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ └── Untitled.png │ └── 스키마.md ├── 역정규화 │ ├── 역정규화 af409 │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ ├── Untitled 4.png │ │ ├── Untitled 5.png │ │ └── Untitled.png │ └── 역정규화.md ├── 정규화 │ ├── 정규화 83264 │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ ├── Untitled 4.png │ │ ├── Untitled 5.png │ │ ├── Untitled 6.png │ │ ├── Untitled 7.png │ │ ├── Untitled 8.png │ │ └── Untitled.png │ └── 정규화.md └── 질문정리.md ├── Network ├── CORS.md ├── HTTP와 HTTPS.md ├── LayeredArchitecture │ └── img_webbasic_10.png ├── Load Balancer.md ├── OAuth(Open Authorization).md ├── OAuth │ └── login-screen.png ├── REST and RESTFUL.md ├── cookie,session,jwt.md ├── proxy.md ├── websocket.md ├── 네트워크 보안(Network Security).md ├── 네트워크 시스템의 Layered Architecture.md ├── 네트워크보안 │ ├── Command-Injection.png │ ├── ipsec-ah.png │ ├── ipsec-esp.png │ ├── ipsec-vpn.png │ ├── xss-reflected.png │ └── xss-stored.png └── 질문정리.md ├── OperatingSystem ├── CPU 스케줄링 기법 │ └── CPU 스케줄링 기법 .md ├── RAID │ ├── RAID be8c1 │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ ├── Untitled 4.png │ │ ├── Untitled 5.png │ │ └── Untitled.png │ └── RAID.md ├── 가상머신.md ├── 가상머신 │ ├── cpu-vt.png │ ├── hypervisor-type.png │ ├── vm-container.png │ ├── vm-xen.png │ ├── x86-ring.png │ ├── 반가상화.png │ └── 전가상화.png ├── 교착 상태와 기아 상태.md ├── 메모리 할당과 단편화.md ├── 메모리 할당과 단편화 │ ├── 가변분할.png │ └── 고정분할.png ├── 블록_논블록_동기_비동기.md ├── 시스템콜.md ├── 운영체제 파일시스템과 RDBMS.md ├── 운영체제_메모리_구조.md ├── 운영체제와 컴퓨터 시스템 구조 │ ├── images │ │ ├── img.png │ │ └── img_1.png │ └── 운영체제와 컴퓨터 시스템 구조.md ├── 주소 바인딩과 스와핑 │ ├── 주소 바인 6e0c3 │ │ ├── Untitled 1.png │ │ ├── Untitled 2.png │ │ ├── Untitled 3.png │ │ ├── Untitled 4.png │ │ ├── Untitled 5.png │ │ └── Untitled.png │ └── 주소 바인딩과 스와핑.md ├── 질문정리.md ├── 캐시의 지역성.md ├── 캐시의 지역성 │ ├── address.png │ ├── hierarchy.png │ ├── l3-cache.png │ ├── mmu.jpg │ ├── pagetable.png │ └── speed-tier.png ├── 페이징과 세그멘테이션.md ├── 프로세스동기화.md ├── 프로세스와 스레드.md └── 프로세스와스레드 │ ├── threadpool.png │ ├── was.png │ └── 프로세스상태전이.png ├── Question ├── 네트워크_질문정리.md ├── 데이터베이스_질문정리.md └── 운영체제_질문정리.md └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/Tech-Interview-Question.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/.idea/Tech-Interview-Question.iml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /Database/DB LOCK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB LOCK.md -------------------------------------------------------------------------------- /Database/DB클러스터링/active-active.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/active-active.png -------------------------------------------------------------------------------- /Database/DB클러스터링/active-standby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/active-standby.png -------------------------------------------------------------------------------- /Database/DB클러스터링/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/common.png -------------------------------------------------------------------------------- /Database/DB클러스터링/dynamic-sharding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/dynamic-sharding.png -------------------------------------------------------------------------------- /Database/DB클러스터링/entity-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/entity-group.png -------------------------------------------------------------------------------- /Database/DB클러스터링/hash-sharding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/hash-sharding.png -------------------------------------------------------------------------------- /Database/DB클러스터링/replication.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/replication.png -------------------------------------------------------------------------------- /Database/DB클러스터링/sharding-partitioning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링/sharding-partitioning.png -------------------------------------------------------------------------------- /Database/DB클러스터링_리플리케이션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/DB클러스터링_리플리케이션.md -------------------------------------------------------------------------------- /Database/ElasticSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/ElasticSearch.md -------------------------------------------------------------------------------- /Database/Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/Index.md -------------------------------------------------------------------------------- /Database/RDB vs NoSQL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/RDB vs NoSQL.md -------------------------------------------------------------------------------- /Database/README.md: -------------------------------------------------------------------------------- 1 | r -------------------------------------------------------------------------------- /Database/Redis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/Redis.md -------------------------------------------------------------------------------- /Database/Transaction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/Transaction.md -------------------------------------------------------------------------------- /Database/동시성 제어.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/동시성 제어.md -------------------------------------------------------------------------------- /Database/스키마 c60952486d774377974451a653b686ef.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마 c60952486d774377974451a653b686ef.md -------------------------------------------------------------------------------- /Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 1.png -------------------------------------------------------------------------------- /Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 2.png -------------------------------------------------------------------------------- /Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled 3.png -------------------------------------------------------------------------------- /Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마/스키마 c60952486d774377974451a653b686ef/Untitled.png -------------------------------------------------------------------------------- /Database/스키마/스키마.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/스키마/스키마.md -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled 1.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled 2.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled 3.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled 4.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled 5.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화 af409/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화 af409/Untitled.png -------------------------------------------------------------------------------- /Database/역정규화/역정규화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/역정규화/역정규화.md -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 1.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 2.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 3.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 4.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 5.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 6.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 7.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled 8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled 8.png -------------------------------------------------------------------------------- /Database/정규화/정규화 83264/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화 83264/Untitled.png -------------------------------------------------------------------------------- /Database/정규화/정규화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/정규화/정규화.md -------------------------------------------------------------------------------- /Database/질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Database/질문정리.md -------------------------------------------------------------------------------- /Network/CORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/CORS.md -------------------------------------------------------------------------------- /Network/HTTP와 HTTPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/HTTP와 HTTPS.md -------------------------------------------------------------------------------- /Network/LayeredArchitecture/img_webbasic_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/LayeredArchitecture/img_webbasic_10.png -------------------------------------------------------------------------------- /Network/Load Balancer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/Load Balancer.md -------------------------------------------------------------------------------- /Network/OAuth(Open Authorization).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/OAuth(Open Authorization).md -------------------------------------------------------------------------------- /Network/OAuth/login-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/OAuth/login-screen.png -------------------------------------------------------------------------------- /Network/REST and RESTFUL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/REST and RESTFUL.md -------------------------------------------------------------------------------- /Network/cookie,session,jwt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/cookie,session,jwt.md -------------------------------------------------------------------------------- /Network/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/proxy.md -------------------------------------------------------------------------------- /Network/websocket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/websocket.md -------------------------------------------------------------------------------- /Network/네트워크 보안(Network Security).md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크 보안(Network Security).md -------------------------------------------------------------------------------- /Network/네트워크 시스템의 Layered Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크 시스템의 Layered Architecture.md -------------------------------------------------------------------------------- /Network/네트워크보안/Command-Injection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/Command-Injection.png -------------------------------------------------------------------------------- /Network/네트워크보안/ipsec-ah.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/ipsec-ah.png -------------------------------------------------------------------------------- /Network/네트워크보안/ipsec-esp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/ipsec-esp.png -------------------------------------------------------------------------------- /Network/네트워크보안/ipsec-vpn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/ipsec-vpn.png -------------------------------------------------------------------------------- /Network/네트워크보안/xss-reflected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/xss-reflected.png -------------------------------------------------------------------------------- /Network/네트워크보안/xss-stored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/네트워크보안/xss-stored.png -------------------------------------------------------------------------------- /Network/질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Network/질문정리.md -------------------------------------------------------------------------------- /OperatingSystem/CPU 스케줄링 기법/CPU 스케줄링 기법 .md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/CPU 스케줄링 기법/CPU 스케줄링 기법 .md -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled 1.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled 2.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled 3.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled 4.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled 5.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID be8c1/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID be8c1/Untitled.png -------------------------------------------------------------------------------- /OperatingSystem/RAID/RAID.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/RAID/RAID.md -------------------------------------------------------------------------------- /OperatingSystem/가상머신.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신.md -------------------------------------------------------------------------------- /OperatingSystem/가상머신/cpu-vt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/cpu-vt.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/hypervisor-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/hypervisor-type.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/vm-container.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/vm-container.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/vm-xen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/vm-xen.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/x86-ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/x86-ring.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/반가상화.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/반가상화.png -------------------------------------------------------------------------------- /OperatingSystem/가상머신/전가상화.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/가상머신/전가상화.png -------------------------------------------------------------------------------- /OperatingSystem/교착 상태와 기아 상태.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/교착 상태와 기아 상태.md -------------------------------------------------------------------------------- /OperatingSystem/메모리 할당과 단편화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/메모리 할당과 단편화.md -------------------------------------------------------------------------------- /OperatingSystem/메모리 할당과 단편화/가변분할.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/메모리 할당과 단편화/가변분할.png -------------------------------------------------------------------------------- /OperatingSystem/메모리 할당과 단편화/고정분할.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/메모리 할당과 단편화/고정분할.png -------------------------------------------------------------------------------- /OperatingSystem/블록_논블록_동기_비동기.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/블록_논블록_동기_비동기.md -------------------------------------------------------------------------------- /OperatingSystem/시스템콜.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/시스템콜.md -------------------------------------------------------------------------------- /OperatingSystem/운영체제 파일시스템과 RDBMS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/운영체제 파일시스템과 RDBMS.md -------------------------------------------------------------------------------- /OperatingSystem/운영체제_메모리_구조.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/운영체제_메모리_구조.md -------------------------------------------------------------------------------- /OperatingSystem/운영체제와 컴퓨터 시스템 구조/images/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/운영체제와 컴퓨터 시스템 구조/images/img.png -------------------------------------------------------------------------------- /OperatingSystem/운영체제와 컴퓨터 시스템 구조/images/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/운영체제와 컴퓨터 시스템 구조/images/img_1.png -------------------------------------------------------------------------------- /OperatingSystem/운영체제와 컴퓨터 시스템 구조/운영체제와 컴퓨터 시스템 구조.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/운영체제와 컴퓨터 시스템 구조/운영체제와 컴퓨터 시스템 구조.md -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 1.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 2.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 3.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 4.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled 5.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인 6e0c3/Untitled.png -------------------------------------------------------------------------------- /OperatingSystem/주소 바인딩과 스와핑/주소 바인딩과 스와핑.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/주소 바인딩과 스와핑/주소 바인딩과 스와핑.md -------------------------------------------------------------------------------- /OperatingSystem/질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/질문정리.md -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성.md -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/address.png -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/hierarchy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/hierarchy.png -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/l3-cache.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/l3-cache.png -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/mmu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/mmu.jpg -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/pagetable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/pagetable.png -------------------------------------------------------------------------------- /OperatingSystem/캐시의 지역성/speed-tier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/캐시의 지역성/speed-tier.png -------------------------------------------------------------------------------- /OperatingSystem/페이징과 세그멘테이션.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/페이징과 세그멘테이션.md -------------------------------------------------------------------------------- /OperatingSystem/프로세스동기화.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/프로세스동기화.md -------------------------------------------------------------------------------- /OperatingSystem/프로세스와 스레드.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/프로세스와 스레드.md -------------------------------------------------------------------------------- /OperatingSystem/프로세스와스레드/threadpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/프로세스와스레드/threadpool.png -------------------------------------------------------------------------------- /OperatingSystem/프로세스와스레드/was.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/프로세스와스레드/was.png -------------------------------------------------------------------------------- /OperatingSystem/프로세스와스레드/프로세스상태전이.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/OperatingSystem/프로세스와스레드/프로세스상태전이.png -------------------------------------------------------------------------------- /Question/네트워크_질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Question/네트워크_질문정리.md -------------------------------------------------------------------------------- /Question/데이터베이스_질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Question/데이터베이스_질문정리.md -------------------------------------------------------------------------------- /Question/운영체제_질문정리.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/Question/운영체제_질문정리.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omnireader0/Tech-Interview-Question/HEAD/README.md --------------------------------------------------------------------------------