Filters
Question type

32-bit Windows XP editions allocate each process a ________GB virtual address space of which ________GB are reserved as system space.


A) 4; 1
B) 4; 2
C) 6; 3
D) 16; 2

E) None of the above
F) A) and B)

Correct Answer

verifed

verified

________ provides directory services for shared objects (e.g., files, printers, services, users, etc.) on a network.


A) Active Directory
B) Lightweight Data Access Protocol (LDAP)
C) Distributed Component Object Model (DCOM)
D) .NET

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

________ is a Windows XP design goal inherited from the corporate line of Windows operating systems.


A) A user-friendly GUI
B) Data reliability
C) Advanced multimedia support
D) Hard real time guarantees

E) None of the above
F) B) and C)

Correct Answer

verifed

verified

The ________ is not a Windows XP thread state.


A) valid state
B) ready state
C) standby state
D) waiting state

E) A) and C)
F) A) and B)

Correct Answer

verifed

verified

A(n) ________ comprises a user's credentials on a Windows XP system.


A) password
B) username, password and access token
C) username and password
D) access token

E) A) and B)
F) B) and C)

Correct Answer

verifed

verified

How do job objects facilitate resource management for servers?


A) A server can group all the processes dedicated to servicing a client's request (or all clients' requests) in a job object and restrict the resources (e.g., processor time and working set size) allocated to those processes.
B) A server can queue work items to a job object, which dispatches one of its dedicated system worker threads to fulfill the request. This frees the server from unnecessarily creating and terminating threads for each client request.
C) A server can register a job object with an I/O completion port. When an I/O for a file associated with the port completes, the job object dispatches one of its dedicated system worker threads to complete I/O processing, freeing the server from this responsibility.
D) all of the above

E) C) and D)
F) B) and D)

Correct Answer

verifed

verified

________ will not cause a process to terminate.


A) A process's parent process terminates.
B) All of process's threads terminate.
C) One of the process's threads directs the process to terminate.
D) The user in whose context the process executes logs off.

E) C) and D)
F) All of the above

Correct Answer

verifed

verified

The ________ interacts with device drivers to fulfill I/O requests.


A) plug and play manager
B) I/O manager
C) power manager
D) I/O worker thread

E) None of the above
F) A) and D)

Correct Answer

verifed

verified

________ is not a type of system worker thread.


A) Asynchronous
B) Delayed
C) Critical
D) Hypercritical

E) C) and D)
F) B) and D)

Correct Answer

verifed

verified

A

A(n) ________ provides a method for unidirectional communication between one server process and many client processes.


A) named pipe
B) unnamed pipe
C) region of shared memory
D) mailslot

E) A) and B)
F) B) and D)

Correct Answer

verifed

verified

A(n) ________ for an interrupt stores interrupt-related information, such as the specific DIRQL at which the interrupt executes, the interrupt vector of the interrupt and the address of the ISR.


A) I/O completion routine
B) interrupt object
C) deferred procedure call (DPC)
D) interrupt dispatch table (IDT)

E) C) and D)
F) A) and C)

Correct Answer

verifed

verified

B

The benefit of using the Network Driver Interface Specification (NDIS) is that ________.


A) each system using NDIS employs the same network and transport protocols, improving interoperability between diverse systems
B) drivers that follow NDIS fulfill all the requirements for network drivers and support plug and play (PnP) by default
C) NDIS hides the differences in network and transport protocols between diverse systems, allowing them to communicate regardless of the protocols they use
D) NDIS drivers are portable because they each implement a standard interface, facilitating driver swapping

E) A) and D)
F) C) and D)

Correct Answer

verifed

verified

When does the object manager delete an object?


A) When all handles to the object are closed.
B) When the thread that created the object calls the delete function.
C) Objects are never deleted unless system memory is low.
D) When the object's reference count drops to zero.

E) B) and C)
F) A) and D)

Correct Answer

verifed

verified

Why might a kernel-mode component need to create a system thread or queue a work item to a system worker thread?


A) The component must perform work not requested by a user thread (e.g., flushing dirty pages to disk) .
B) The component is unable to perform all interrupt processing at an elevated IRQL.
C) The component must share handles with a user-mode process.
D) Both a and b.

E) A) and D)
F) A) and B)

Correct Answer

verifed

verified

.NET services interoperable and portable because ________.


A) they support COM interfaces
B) clients communicate with .NET servers through native API calls, regardless of whether the service is on the local computer or a remote computer
C) clients communicate with .NET servers using XML messages which any computer can interpret because they are just text (i.e., not language or platform specific)
D) clients and servers of .NET services communicate using IDL, which is The Open Group's Distributed Computing Environment (DCE) standard for RPC interoperability

E) A) and C)
F) None of the above

Correct Answer

verifed

verified

Mapping views of files provides which additional benefit(s) beyond sharing memory?


A) faster random I/O
B) faster sequential I/O
C) more efficient caching
D) all of the above

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

A thread gains access to a resource with a nonempty discretionary access control list (DACL) if ________.


A) the first ACE (access control entry) in the resource's DACL that matches one of the SIDs in the thread's access token grants that security principal access to the resource
B) no ACE in the resource's DACL denies access to any of the SIDs in the thread's access token
C) one of the ACEs in the resource's DACL that matches one of the SIDs in the thread's access token grants that security principal access to the resource
D) for each SID in the thread's access token, there is an ACE in the resource's DACL that grants access to the resource

E) A) and B)
F) B) and C)

Correct Answer

verifed

verified

________ is a file system supported by the default installation of Windows XP.


A) FAT
B) NTFS
C) UDF
D) all of the above

E) B) and D)
F) None of the above

Correct Answer

verifed

verified

Asynchronous I/O available to Windows XP threads can be managed by ________.


A) issuing the I/O request, performing some other processing and waiting on an event object to signal the completion of the I/O
B) performing alertable I/O, in which case a thread issues the I/O request, performs some other processing and then enters an alertable wait state to process an APC associated with the I/O completion
C) using an I/O completion port, enabling another thread that registered with the port and that is waiting for I/O completion packets to process them
D) all of the above.

E) A) and B)
F) A) and C)

Correct Answer

verifed

verified

A CIFS client uses a(n) ________ to obtain exclusive access to a remote file, ensuring that the client can cache data locally and maintain cache coherency.


A) spin lock
B) cache lock
C) opportunistic lock
D) network lock

E) All of the above
F) C) and D)

Correct Answer

verifed

verified

C

Showing 1 - 20 of 78

Related Exams

Show Answer