Recent activity by lokesh kumar

2 answers
1
Assume that execution of 200 instructions on a 6 staged pipeline where the target address is available at 4th stage.Let X be the probability of an instruction not being b...
3 answers
5
The message $11011011$ should be transmitted using CRC polynomial $x3+x+1$, to protect it from errors that message will be transmitted as ________
3 answers
6
1 answer
8
Consider the following 3 processes with 3 binary semaphores with initial values $S_{0}=0, S_{1}=0, S_{2}=1$$$ \begin{array}{|c|c|c|} \hline \textbf{P} & \textbf{Q} & \tex...
3 answers
9
Which are invalid process state transition?a. Timer Start: ready->runningb. Timer Out: running->blockedc. I/O: running->readyd. Resume : suspend->running
3 answers
12
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.