Recent activity by akash_chauhan

2 answers
1
In round-robin if one process finishes its time quantum and at the same time another process enters the system so which one will enter the ready queue first?
4 answers
5
1)Consider the following pseudo code:for(i=1;i<=4;i++){fork();printf("X");}How many times “X” is printed?2) Consider the following pseudo code:void main(){fork();fork...
2 answers
6
main(){if(fork()>0)sleep(100);}The given code results in the creation of:I) an orphan processII) a zombie processIII) a process that executes foreverIV) None of these Ca...
2 answers
7
A process executes the following segment of code:int main() { fork(); fork() && fork();}The number of new processes created is __________Can someone pls explain...
3 answers
10
1 answer
11
what is the difference between, r* and r^(*) can anyone please elaborate !
7 answers
16
2 answers
18
Example: 11110100000111 should be accepted. There are 6 zeros. 6 is divisble by 2 and 3. This machine required at least six states.
1 answer
21
T(n) = 5T(n/3) + T(2n/3) + 1.My answer is BigOmega(n) BigO(n). Am I right? This is a question I found on cs.stackexchange.