GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

What was Article 231 of the Treaty of Versailles? 

What was Article 231 of the Treaty of Versailles? 

Read Details

In the makefile the target and dependencies are separated by…

In the makefile the target and dependencies are separated by the character

Read Details

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

Posts pagination

Newer posts 1 … 37,440 37,441 37,442 37,443 37,444 … 94,845 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top