In the 8086 microprocessor, the Interrupt Vector Table (IVT) resides in the first 1KB of memory (addresses 00000H to 003FFH). This table stores the starting addresses of the Interrupt Service Routines (ISRs) for different interrupt types.
Each interrupt type is assigned a unique number (from 0 to 255).
For each interrupt type, the IVT stores a 4-byte address:
2 bytes for the new Instruction Pointer (IP) value (offset address of ISR).
2 bytes for the new Code Segment (CS) register value (segment address of ISR).
These 4 bytes (IP low, IP high, CS low, CS high) specify the full 20-bit starting address of the ISR.
Therefore, each interrupt vector (pointer to an ISR) requires 4 memory locations (bytes).
\[ \boxed{\text{Four}} \]