Operating System » Threads Ult Klt
Operating System Subcategories
Memory Management Swapping 1Process Scheduling Queue
Virtual Memory Page Replacement Algorithms 1Linux
Cpu SchedulingMemory Management
Computer FundamentalsCpu Scheduling Benefits
Threads Signal HandlingThreads Ult Klt
Distributed Operating SystemBasics
Operating SystemProcesses
Cpu Scheduling Algorithms 1Cpu Scheduling Algorithms 2
DeadlockDeadlock Avoidance
Memory Management Swapping 2Memory Allocation 1
Secondary StorageMemory Management Paging 1
Memory Management Paging 2Rtos
Multimedia System Cpu Disk SchedulingSecurity Intrusion Detection
Virtual Memory ThrashingFile System Interface Access Methods 1
File System Interface Directory Structure 1File System Interface Directory Structure 2
File System Interface Mounting SharingFile System Allocation Methods 1
Disk Scheduling 2Disk Management
Classic Sync ProblemsSemaphores 1
Process CreationMultimedia System Network Management
Semaphores 2Cpu Scheduling 2
Application Io Interface 1Inter Process Communication
Process SynchronizationMultimedia System Compression 1
Network File System 1Disk Scheduling 1
Mass Storage Raid 1File System 1
Communication Systems Bandwidth Transmission MediumSecurity Cryptography
Two Port NetworkProcess Rpc
Virtual Memory Page Replacement Algorithms 2Virtual Memory Frame Allocation
Network File System 2File System Allocation Methods 2
File System Allocation Methods 3Process Control Block
Process StructuresCritical Section Problem
Process Sync MonitorsAtomic Transactions
Deadlock RecoveryMemory Allocation 2
Memory Management SegmentationApplication Io Interface 2
Kernel Io SubsystemsMultimedia System Compression 2
Multimedia System Compression 3Security User Authentication
Security Program System ThreatsSecurity System Facility
Threads Fork ExecThreads Cancellation
Threads PoolsMulti Threading Models
Virtual Memory Demand PagingVirtual Memory
File System ConceptsFile System Implementation
File System Interface Access Methods 2File System Recovery
Io SubsystemSwap Space Management
Mass Storage Raid 2Mass Storage Tertiary Storage
Protection ConceptsProtection Access Matrix
SecurityProtection Memory Protection
Protection Revocation Access RightsNetwork Structure Topology
RobustnessDistributed File System
Distributed SynchronizationDeadlock Prevention
Deadlock DetectionThreads
File System Interface ProtectionFile System Free Space Performance
Which of the following is false?

A. Context switch time is longer for kernel level threads than for user level threads
B. User level threads do not need any hardware support
C. Related kernel level threads can be scheduled on different processors in a multiprocessor system
D. Blocking one kernel level thread blocks all other related threads

A thread is also called ___________

A. Light weight process(lwp)
B. Heavy weight process(hwp)
C. Process
D. None of the mentioned

A thread shares its resources(like data section, code section, open files, signals) with ___________

A. Other process similar to the one that the thread belongs to
B. Other threads that belong to similar processes
C. Other threads that belong to the same process
D. All of the mentioned

A heavy weight process ___________

A. Has multiple threads of execution
B. Has a single thread of execution
C. Can have multiple or a single thread for execution
D. None of the mentioned

A process having multiple threads of control implies ___________

A. It can do more than one task at a time
B. It can do only one task at a time, but much faster
C. It has to use only one thread per process
D. None of the mentioned

Multithreading an interactive program will increase responsiveness to the user by ___________

A. Continuing to run even if a part of it is blocked
B. Waiting for one part to finish before the other begins
C. Asking the user to decide the order of multithreading
D. None of the mentioned

Resource sharing helps ___________

A. Share the memory and resources of the process to which the threads belong
B. An application have several different threads of activity all within the same address space
C. Reduce the address space that a process could potentially use
D. All of the mentioned

Multithreading on a multi – CPU machine ___________

A. Decreases concurrency
B. Increases concurrency
C. Doesn’t affect the concurrency
D. Can increase or decrease the concurrency

The kernel is _______ of user threads.

A. A part of
B. The creator of
C. Unaware of
D. Aware of

If the kernel is single threaded, then any user level thread performing a blocking system call will ___________

A. Cause the entire process to run along with the other threads
B. Cause the thread to block with the other threads running
C. Cause the entire process to block even if the other threads are available to run
D. None of the mentioned