7 7 votes Which is the correct definition of a valid process transition in an operating system? Wake up: ready $\rightarrow$ running Dispatch: ready $\rightarrow$ running Block: ready $\rightarrow$ running Timer runout: $\rightarrow$ ready $\rightarrow$ running Operating System isro2009 operating-system process + – Desert_Warrior 7.5k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
Best answer 13 13 votes Answer is [B] a) WakeUp : waiting->ready b) Dispatch : Ready-> Running c) Block : Waiting/Blocked ->Ready d) Timerout : Running->Blocked shivanisrivarshini answered Jun 3, 2016 • selected Jun 3, 2016 by Desert_Warrior shivanisrivarshini comment Share Follow See all 6 Comments 6 6 Comments reply Show 3 previous comments talha hashim commented Oct 21, 2018 reply Follow flag @tryhard block mean RUNNING =====> BLOCK state 2 2 replyShare kishorbpawar commented Aug 11, 2019 reply Follow flag timerout-> running to ready 5 5 replyShare vasim commented Nov 29, 2024 reply Follow flag d)timerout : running --> ready 1 1 replyShare Please log in or register to add a comment.
0 0 votes 1. wake up means hey your i/0 request approved and again go for the executing so we put from blocked to ready 2.dispatch:scheduler dispatch from ready to running state 3.block: from running u have an i/o request so lead to block(=waiting) state 4.timer runout:it an preemtive state from running state to go back to ready state jacknroll answered Aug 28, 2025 jacknroll comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes Answer: Dispatch: ready → runningA process transition defines how a process changes its state in an operating system.Dispatch is the operation performed by the CPU scheduler when it selects a process from the ready queue and assigns the CPU to it.This causes the process state to change from Ready → Running.Explanation of other options:Wake up: transitions from Blocked → Ready (not Ready → Running).Block: transitions from Running → Blocked (when waiting for I/O).Timer runout: transitions from Running → Ready (when time slice expires).Correct transition:Dispatch: Ready → Running Ritisha_Pande answered Oct 10, 2025 Ritisha_Pande comment Share Follow 0 reply Please log in or register to add a comment.