The virtual memory has three distinct address spaces: Logical, linear and physical.
A logical address (also known as virtual address) consists of a selector and an offset.
A selector is the contents of a segment register
Every segment selector has a linear base address associated with it, and it is stored m the segment descriptor.
A selector is used to point a descriptor for the segment in a table of descriptors.
The linear base address from the descriptor is then added to the 32-bit offset to generate the 32-bit linear address.
This process is known as segmentation or segment translation It paging unit is not enabled then the 32-bit linear address corresponds to the physical address. But if paging unit is enabled, paging mechanism translates the linear address space into the physical address space by paging translation.