Which of the following statements is false?

a. A runnable thread transitions to the blocked state when it attempts to perform a task that cannot be completed immediately and it must temporarily wait until that task completes.
b. When a thread issues an input/output request, the operating system blocks the thread from executing until that I/O request completes—at that point, the blocked thread transitions to the runnable state, so it can resume execution.
c. A blocked thread cannot use a processor, even if one is available.
d. Each of the above statements is true.


d. Each of the above statements is true.

Computer Science & Information Technology

You might also like to view...

Which of the following tools should you use to scan Unix systems?

A) NetStat Live B) Active Ports C) SATAN D) Cerberus

Computer Science & Information Technology

Import data from another Access database when you want to create tables similar to the source database

Indicate whether the statement is true or false

Computer Science & Information Technology

Before you configure a forest trust, what should you configure to ensure you can contact the forest root of both forests from both forests?

A. Firewall rules B. Routing C. Selective authentication D. Stub zones

Computer Science & Information Technology

Given the branch sequence TTTTNTTNNTTTTTNNNNNNNNNTNTTTTTTTTTTTT and assuming that the 3?bit saturating predictor starts in its saturated T state, what will the predicted sequence be?



The following code is executed by an ARM processor:


MOV r0,#4
B1 MOV r2,#5
SUB r2,r2,r0
B2 SUBS r2,r2,#1
BNE B2 ;Branch 1
SUBS r0,r0,#1
BNE B1 ;Branch 2


Assume that a 1?bit branch predictor is used for both branch 1 and branch 2 and that both predictors are initially
set to N. Complete the following table by running through this code.


Repeat the same exercise with the same initial conditions but assume a 2?bit saturating counter branch predictor.

Computer Science & Information Technology