Operating system architecture defines how the core part of the OS, called the kernel, is organized. There are three main types: monolithic, microkernel, and hybrid. When the OS boots, it loads the kernel. In a monolithic kernel, all services like file system, drivers, and networking run inside the kernel space, making communication fast but the kernel large. In a microkernel, only essential parts run in kernel space, and other services run in user space, improving modularity and security but slowing communication. A hybrid kernel combines both approaches to balance speed and modularity. This flow is shown step-by-step in the execution table and variable tracker, helping visualize how the OS loads and runs services differently depending on the architecture.