0 votes
2
Which are invalid process state transition?a. Timer Start: ready->runningb. Timer Out: running->blockedc. I/O: running->readyd. Resume : suspend->running
3 votes
4
What is the output of the following $C$ code segment?# define product (a, b) a * b main() { int x=5, y=2; print f("%d", product{x+4, y-3}); }$10$$-9$$15$Error.