To determine the bit counts for logical and physical addresses: Logical Address: 8 pages require log2(8) = 3 bits for the page number. With 1024 words per page, log2(1024) = 10 bits are needed for the word offset. The total logical address is 3 + 10 = 13 bits. Physical Address: 32 frames require log2(32) = 5 bits for the frame number. As each frame holds 1024 words, 10 bits are for the word offset. The total physical address is 5 + 10 = 15 bits.