user2254798
user2254798

Reputation: 575

Memory Management with paging

In the method of paging in the operating system memory management issues. when we have 64 byte for Pages ,why 6 bit needed?

 111111 ==> 63
 1000000 => 64

Upvotes: 1

Views: 148

Answers (1)

Rajeev Singh
Rajeev Singh

Reputation: 3332

Using 6 bits you can represent maximum 64 pages(0-63) in binary. As one single bit can take only two values 0 or 1,so for 6 bits you have 2*2*2*2*2*2 or 26 different permutations.Every permutation will identify a different page.

Upvotes: 1

Related Questions