Q: Given your own example for segment table and logical addresses, calculate the physical addresses.
A: Segment table
Given logical address (3,200), which means segment number is 3 and offset is 200. The correspond physical memory is 2200+200=2400.
Given logical address (1,600), which means segment number is 1 and offset is 600. However, the limit of segment 1 is 400. So we will encounter an error here.
Given logical address (1,78), which means segment number is 1 and offset is 78. The correspond physical memory is 3300+78=3378.