Bose interview question

how many stacks in OS

Interview Answer

Anonymous

31 Aug 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