1. Dinamik yeniden konumlandırma (dynamic relocation) nedir ve statik olandan farkı nedir? Çalışma zamanında sıklıkla ana bellek ile ikincil bellek arasında veri aktarımlarına ihtiyaç duyulur. Böyle durumlarda çalışır durumdaki programların ana bellekteki konumlarının değişmesine rağmen çalışabilmesine devam etmesini sağlayan bellek yönetimi mantığıdır. 2. Sayfa isteğiyle (demand paging) proseslerin belleğe yüklenmesi ne avantajlar sağlar? Büyük miktarda mantıksal bellek kullanımı, yüksek sayıda paralellik imkanı, proseslerin daha etkin yaratılması. 1. In memory models, how is a small part of memory that can not be used by any process called? and how can we fix it? External fragmentation. Compaction. 2. When is a valid/invalid bit transformed (say for both "i" to "v" and "v" to "i")? Both situtations depend on page fault occurring. First, to make free a page of main memory, bit of swapped out page is transformed "v" to "i". And then, by swapping the requested page in, an "i" is transformed into a "v". 1. According to criteria of hardware cost and time consuming, compare the efficient ways to implement the page table. In registers, time consuming's low and hardware cost's high. In main memory, hardware cost's low and time consuming's high. And associative registers provide balance of both criteria. 2. Why cannot OS use OPT (Optimal Page Replacement)? Because it requires future knowledge, OPT is not possible to be implemented.