Bose Interview Question

how many stacks in OS

Interview Answer

Anonymous

Aug 31, 2017

There is a User mode stack and Kernel mode stack for each process in the OS. It context switches between user and supervisor modes as per sys calls and can switch back and forth.

2