logo

Crowdly

Browser

Додати до Chrome

Questions Bank (1398709 total)

El uso de excepciones es la forma más adecuada de tratar...

0%
0%
0%
0%
Переглянути це питання

Using the information in the table below, what is the parent process ID for the process that printed this table to the Linux shell?

A table of Linux process information

Переглянути це питання

Suppose that a single-CPU system uses round robin scheduling with a time slice of 1 millisecond. The ready queue for this system always contains n processes that make no I/O requests, and the time taken to swap processes assigned to the CPU is negligible. A process (with a burst time of t milliseconds) arrives in the ready queue immediately after a process is assigned to the CPU. This newly arrived process eventually successfully terminates before any of the other processes. How long (in milliseconds) did the process take to execute in this system? 

0%
0%
0%
Переглянути це питання

 Suppose 2 programs -- A and B -- with service times 156 time units and 168 time units respectively, are executing on a system with a single CPU. The programs make no I/O requests.  Using a Round Robin policy with a time slice of 12 time units, the OS schedules the programs to run on the CPU -- program A runs first, then program B, then back to A, and so on. The OS uses timer interrupts to reassign the CPU from one program to another. 

Assume 1) no other program/OS activity consumes CPU cycles, 2) both programs will consume their service times and successfully terminate, and 3) no interrupts occur before the CPU executes the first instruction from program A. 

Based only on the information given, how many mode switches due to interrupts have occurred by the time program A has spent 155 time units running on the CPU?

0%
0%
0%
0%
0%
Переглянути це питання

Under the 5-state process model, processes with IDs 3, 8, 13, 16 and 25 are executing on a system. They arrived in the ready queue in the order they are listed, starting with process 3. The processes do not fail and do not make I/O requests. The short-term scheduler uses the following preemptive priority scheduling algorithm (processes with larger priority numbers have higher priority):

- the process with the highest priority runs on the CPU (FCFS is used, in case of a tie);

- a process has priority 0 when it first enters the ready queue;

- the priorities of all processes in the ready queue continuously decrease at the same rate;

- the priority of the process running on the CPU also continuously decreases, but more slowly than the priorities for processes in the ready queue.

Based only on this information, what is the order in which the processes finish executing?

Переглянути це питання

Будь-який рядок (набір символів) є ...

Переглянути це питання

 

Quelle

syntaxe correspond à cette boite de dialogue ?

Переглянути це питання

On affiche une boîte de dialogue avec les boutons Abandonner, Recommencer et Ignorer après l’exécution de la commande suivante : 

MyVar=MsgBox(« Voulez-vous recommencer ? »,vbAbortRetryIgnore)

Quelle sera la valeur de la variable MyVar si l’utilisateur choisit le bouton Ignorer ?

Переглянути це питання

A la lecture du code suivant, quelle sera la valeur de la

variable Mention ?

MaNote=8

If MaNote >=0 Or

MaNote <=20 Then

     If MaNote < 10 then

          Mention = « Ajourné »

     ElseIf MaNote >=10 Then

          Mention= « Reçu »

     EndIf

EndIf

0%
0%
0%
0%
Переглянути це питання

Виберіть метод класу String, що повертає копію рядка s1, з якої прибрані початкові і завершальні пробіли

Переглянути це питання