GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

Author Archives: Anonymous

If a process is executing in its critical section, then no o…

If a process is executing in its critical section, then no other processes can be executing in their critical section. What is this condition called?

Read Details

What is the output of this program? int main() {    pid_t pi…

What is the output of this program? int main() {    pid_t pid;    int var = 100    pid = fork();    if (pid == 0) {              var = 200   }   fork();   print(“%d”, var)   return 0; }

Read Details

What is the output of this program?    int main() {        p…

What is the output of this program?    int main() {        pid_t child;        child = fork();        printf(“%d\n”,child);        return 0; }

Read Details

Which scheduling algorithm allocates the CPU first to the pr…

Which scheduling algorithm allocates the CPU first to the process that requests the CPU first?

Read Details

With _____________ only one process can execute at a time; m…

With _____________ only one process can execute at a time; meanwhile all other process are waiting for the processor. With ______________ more than one process can be running simultaneously each on a different processor.

Read Details

Semaphore is a/an _______ to solve the critical section prob…

Semaphore is a/an _______ to solve the critical section problem.

Read Details

The given DFA corresponds to which of the following Regular…

The given DFA corresponds to which of the following Regular expressions?

Read Details

The interval from the time of submission of a process to the…

The interval from the time of submission of a process to the time of completion is termed as ____________

Read Details

Which of the following is a stage of compiler design?

Which of the following is a stage of compiler design?

Read Details

Which of the following do we use to form an NFA from a regul…

Which of the following do we use to form an NFA from a regular expression?

Read Details

Posts pagination

Newer posts 1 … 37,691 37,692 37,693 37,694 37,695 … 95,096 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top