Operating System » Multi Threading Models
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
The model in which one kernel thread is mapped to many user-level threads is called ___________

A. Many to one model
B. One to many model
C. Many to many model
D. One to one model

The model in which one user-level thread is mapped to many kernel level threads is called ___________

A. Many to one model
B. One to many model
C. Many to many model
D. One to one model

In the Many to One model, if a thread makes a blocking system call ___________

A. The entire process will be blocked
B. A part of the process will stay blocked, with the rest running
C. The entire process will run
D. None of the mentioned

In the Many to One model, multiple threads are unable to run in parallel on multiprocessors because of ___________

A. Only one thread can access the kernel at a time
B. Many user threads have access to just one kernel thread
C. There is only one kernel thread
D. None of the mentioned

The One to One model allows ___________

A. Increased concurrency
B. Decreased concurrency
C. Increased or decreased concurrency
D. Concurrency equivalent to other models

In the One to One model when a thread makes a blocking system call ___________

A. Other threads are strictly prohibited from running
B. Other threads are allowed to run
C. Other threads only from other processes are allowed to run
D. None of the mentioned

Which of the following is the drawback of the One to One Model?

A. Increased concurrency provided by this model
B. Decreased concurrency provided by this model
C. Creating so many threads at once can crash the system
D. Creating a user thread requires creating the corresponding kernel thread

When is the Many to One model at an advantage?

A. When the program does not need multithreading
B. When the program has to be multi-threaded
C. When there is a single processor
D. None of the mentioned

In the Many to Many model true concurrency cannot be gained because ___________

A. The kernel can schedule only one thread at a time
B. There are too many threads to handle
C. It is hard to map threads with each other
D. None of the mentioned

In the Many to Many models when a thread performs a blocking system call ___________

A. Other threads are strictly prohibited from running
B. Other threads are allowed to run
C. Other threads only from other processes are allowed to run
D. None of the mentioned