Thread MCQ (Free PDF) - Objective Question Answer For Thread Quiz - Download Now!
Thread MCQ (Free PDF) - Objective Question Answer For Thread Quiz - Download Now!
Thread MCQ Quiz - Objective Question with Answer for Thread - Download Free PDF
Thread MCQs consist of multiple choice questions on the concept of threads in computer programming, specifically in
multithreaded programming environments. Topics may include the concept of multithreading, thread synchronization,
thread states and their transitions, inter-thread communication, and the impact of multithreading on program
performance. A solid understanding of these topics is crucial for aspirants pursuing careers in software development,
particularly in system-level programming, and for those preparing for competitive examinations in computer science.
Boost your preparation by solving Thread MCQs with detailed answers right away.
In Linux Operating System, when _________ is invoked, it is passed a set of flags that
determine how much sharing is to take place between the parent and child tasks.
1. fork()
2. clone()
3. pthread()
4. thread()
Option 2 : clone()
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 1/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Key Points
clone(): This system call creates a new process, similar to fork(), but it also allows the child
process to share parts of its execution context with the calling process.
The execution context includes resources like memory space, file descriptor tables, etc.
The degree of sharing is controlled by a set of flags passed when invoked, which defines a
spectrum between traditional processes and threads.
Additional Information
fork(): This is a system call used in Unix and Linux-based systems that creates a new process. The
new process, called the child process, is an exact copy of the calling process, which is the parent
process. It gets a new process ID (PID) and inherits most of the properties of the parent process,
but they do not share the same memory space.
pthread_create(): This function is used to create a new thread in the context of the current
process in POSIX-compliant operating systems (like Unix or Linux). Threads created by
pthread_create share the same memory space but get their own stack memory.
There is no thread() system call in Linux.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 2/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Thread Question 2:
English Get Started
In Kernel I/O Subsystem, A _____________ is a buffer that holds jobs for a device until it is
ready to take them.
1. Buffering
2. Caching
3. Spooling
4. Scheduling
Option 3 : Spooling
Concept:
Many I/O services are provided by the kernel. Caching, scheduling, spooling, device reservation, and
error handling are all tasks provided by the kernel that rely on the hardware and device driver
infrastructure.
A spooling is a type of buffer that holds the jobs for a system until the system is ready to accept
the jobs.
Spooling considers discs to be a huge buffer capable of holding as many jobs as the device
Home requires until
Operating the output
Systems devices
Process are readyThread
and Thread to accept them. Download Thread MCQs Free PDF
Spooling allows a user to view and, if desired, delete specific data streams.
Additional Information
Caching:
Caching involves storing a replica of data in a location that is easier to reach than the original.
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 3/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Buffering:
English Get Started
The buffer is a section of main memory used to temporarily store or keep data sent between two
devices or between a device and an application.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
Thread Question 3:
Data structure maintained by the operating system to maintain information for each thread
within a process is known as ______.
2. Symbol table
3. Scheduling queue
Key Points
-
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 4/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
The data structure maintained by the operating system to maintain information for each thread
within a process is known as a Thread Control Block (TCB). TCB contains
English information about the
Get Started
current state of the thread, such as its register values, stack pointer, program counter, and
scheduling information. It also contains a pointer to the process control block (PCB) of the
process to which the thread belongs.
Additional Information
A Symbol Table is a data structure used by compilers and other language processing tools to
store information about the names used in a program, such as variables, functions, classes, and
other identifiers. It is essentially a hash table that maps the name of each identifier to information
about its type, scope, and location in memory. This information is used by the compiler to
generate machine code, perform type checking, and detect errors in the program. The symbol
table is also used by debuggers to map machine code back to source code, and by language
interpreters to implement dynamic typing and other language features.
A scheduling queue is a data structure used by the operating system to keep track of the
different processes or threads waiting to be executed by the CPU. The scheduling queue can be
implemented as a simple queue or a more complex data structure such as a priority queue or a
circular queue. The scheduling algorithm of the operating system uses the information in the
scheduling queue to decide which process or thread to execute next. The scheduling queue also
provides information such as the priority level, state, and other attributes of each process or
thread in the queue.
Process Control Block (PCB) is a data structure used by the operating system to store
information about a process or a task being executed. It is also known as a Task Control Block
(TCB) or a Process Descriptor. The PCB contains important information about the process, such as
its process ID, state, priority, CPU registers, memory allocation, and other related details.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
Thread Question 4:
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 5/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
If an operating system does not allow a child process to exist when the parent process has
English Get Started
been terminated, this phenomenon is called as-
1. Threading
2. Cascading termination
3. Zombie termination
4. Process killing
Threading - It is a lightweight process that the operating system can schedule and run concurrently
with other threads. The operating system creates and manages threads, and they share the same
memory and resources as the program that created them. This enables multiple threads to collaborate
and work efficiently within a single program.
Cascading Termination - It occurs in some systems, including VMS, which do not allow a child to exist
if its parent has terminated. In such systems, if a process terminates either normally or abnormally, then
all its children have to be terminated.
Zombie Termination - It is a process that has completed execution but still has an entry in the process
table. This occurs for the child processes, where the entry is still needed to allow the parent process to
read its child's exit status.
EE
FR
India’s #1 Learning Platform Trusted by 5.7 Crore+ Students
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 6/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Thread Question 5:
In Kernel I/O Subsystem, A _____________ is a buffer that holds jobs for a device until it is
ready to take them.
1. Buffering
2. Caching
3. Spooling
4. Scheduling
Option 3 : Spooling
Concept:
Many I/O services are provided by the kernel. Caching, scheduling, spooling, device reservation, and
error handling are all tasks provided by the kernel that rely on the hardware and device driver
infrastructure.
A spooling is a type of buffer that holds the jobs for a system until the system is ready to accept
the jobs.
Spooling considers discs to be a huge buffer capable of holding as many jobs as the device
requires until the output devices are ready to accept them.
Spooling allows a user to view and, if desired, delete specific data streams.
Additional Information
Caching:
Caching involves storing a replica of data in a location that is easier to reach than the original.
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 7/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Buffering:
English Get Started
The buffer is a section of main memory used to temporarily store or keep data sent between two
devices or between a device and an application.
EE
FR
India’s #1 Learning Platform Trusted by 5.7 Crore+ Students
1. A virtual process
2. A lightweight process
3. A heavyweight process
4. A scheduler`
Concept
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 8/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Threads are sometimes called lightweight processes because they have their own stack but can access
shared data. Because threads share the same address space as the process and other threads
English Get within
Startedthe
process, the operational cost of communication between the threads is low, which is an advantage.
Important Points:
Multiple threads of the same process share other resources of process except register, stack and stack
pointer. In particular, a process is generally considered to consist of a set of threads sharing an address
space, heap, static data, code segments and file descriptors.
Thread of the same process doesn't share program counter (register), stack, registers
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
1. a part of
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 9/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
3. unaware of
4. aware of
Option 3 : unaware of
unaware of
Concept:-
The kernel is unaware of the user-level threads because they are implemented at the user level.
Key Points
User-level threads can be created and managed more quickly. It takes longer to create and
manage threads at the kernel level. At the user level, implementation is handled by a thread
library.
Operating systems of this type that do not allow kernel-level threads can nonetheless use user-
level threads. It is more effective and quicker.
The kernel is the core component of an operating system for a computer (OS). All other
components of the OS rely on the core to supply them with essential services.
Like processes and interrupt handlers, kernel threads are kernel entities that the system scheduler
manages.
Although it executes within a process, a kernel thread is accessible to all other threads running on
the system.
Examples: Java threads, POSIX threads, etc. The user threads can be more easily implemented than
the kernel thread.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 10/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Daily Live Practice Question Mock Tests &
MasterClasses Bank Quizzes
English Get Started
1. Kernel
2. User
3. Virtual
4. I/O mode
Option 1 : Kernel
Explanation:
Operating system provides dual mode of operation: user mode and kernel mode.
A bit called mode bit is added to the hardware of the computer to indicate the current mode: kernel (0)
and user (1).
If an attempt is made to execute a privilege instruction in user mode, hardware does not execute the
instruction itself but rather treats it as illegal and traps it to the operating system.
Instruction to switch to user mode is an example of privileged instruction. Some other examples include
I/O control, timer management and interrupt management.
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 11/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
I. Program counter
II. Stack
IV. Registers
1. I and II only
2. III only
3. IV only
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 12/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Multiple threads of the same process share other resources of process except register, stack and stack
pointer. In particular, a process is generally considered to consist of a set of threads sharing
English anStarted
Get address
space, heap, static data, code segments and file descriptors.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 13/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Concepts:
Multiple threads of the same process share other resources of process except register, stack and stack
pointer.
A process is generally considered to consist of a set of threads sharing an address space, heap, static
data, code segments and file descriptors.
Diagram:
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 14/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
2. When a user level thread is blocked, all other threads of its process are blocked
3. Context switching between user level threads is faster than context switching between kernel
level threads.
Concept:
Multiple threads of the same process share other resources of process except register and stack
pointer.
In particular, a process is generally considered to consist of a set of threads sharing an address
space, heap, static data, code segments and file descriptors.
Thread:
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 15/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Option 4: FALSE
Option 1: TRUE
User level threads are scheduled by the thread library and kernel do not know about it. Therefore, User
level threads are not scheduled by the kernel.
Option 2: TRUE
When a user level thread is blocked, all other threads of its process are blocked.
Option 3: TRUE
Context switching between user level threads is faster than context switching between kernel
level threads because in user level thread, context switching nothing is saved and restored while for
kernel level thread, registers, program counter and stack pointer must be saved and restored.
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 16/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Concept:
Scheduling of user-level threads in the user space that the application developer creates with the help
of a thread library to conduct certain subtasks. This thread control blocks mapping is performed by
thread library process control blocks.
The kernel is unaware of the existence of user-level threads because they are implemented by
users. They're treated as if they're single-threaded processes. Kernel-level threads are large and
slow, whereas user-level threads are small and quick.
A program counter (PC), stack, registers, and a short process control block are used to represent
them. In addition, there is no kernel involvement in user-level thread synchronization.
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 17/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Kernel-level threads are handled directly by the operating system, and the kernel manages the threads.
The kernel is in charge of the process's context information as well as the process threads. Kernel-level
threads are therefore slower than user-level threads.
Alternate Method
Option 1: Fundamental state transition:
False, It is not a process state transition Diagram. An active process is normally in one of the five states
in the diagram. States are new, ready, running, blocked, and exit.
False, In the Kernel level thread, thread management is done by Kernel. Operating systems support the
Kernel level thread and Kernel level thread support one-to-one thread mapping. This mapping requires
each user thread with kernel thread. The operating system performs this mapping. But here PCB must
be kept in an area of memory protected from normal user process access.
False, It is not a diagram of the event handling action of the kernel. Event Handling is the mechanism
that controls the event and decides what should happen if an event occurs.
EE
FR
India’s #1 Learning Platform Trusted by 5.7 Crore+ Students
fork();
fork();
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 18/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
fork();
English Get Started
The total number of child processes created is
1. 3
2. 4
3. 7
4. 8
Option 3 : 7
Concept:
Fork () is a system call that creates a new process. After a new child process is created, both processes
will execute the next instruction. If fork() returns a negative value, the creation of the child process was
unsuccessful. Return zero to the newly created process.
Explanation:
If there are n fork() calls, then the number of child processes created is 2n – 1.
Calculation:
n = 3,
EE
FR
India’s #1 Learning Platform Trusted by 5.7 Crore+ Students
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 19/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Daily Live Practice Question Mock Tests &
MasterClasses Bank Quizzes
English Get Started
2. Single thread
3. Parallel threads
4. Multiple threads
Concept:
A process is a program that executes only one thread of code. Instructions are executed in a single
sequence in single-threaded processes. In other words, only one command at a time is processed.
There is only one point of execution at any given time during the program's execution. A thread is
analogous to a sequential program. A single thread has a start, a sequence, and an end.
A process is a computer program instance that is being executed by one or more threads.
It contains the program code as well as the program's activity.
A process may be composed of multiple threads of execution that execute instructions
concurrently, depending on the operating system (OS).
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 20/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
EE
FR
India’s #1 Learning Platform Trusted by 5.7 Crore+ Students
User level threads are threads that are visible to the programmer and are unknown to the kernel. The
operating system kernel supports and manages kernel level threads. Three different types of models
relate user and kernel level threads.
(a)
(i) The Many - to - one model maps many user threads to one kernel thread
(ii) The one - to - one model maps one user thread to one kernel thread
(iii) The many - to - many model maps many user threads to smaller or equal kernel threads
(b)
(i) Many - to - one model maps many kernel threads to one user thread
(ii) One - to - one model maps one kernel thread to one user thread
(iii) Many - to- many model maps many kernel threads to smaller or equal user threads
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 21/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
CONCEPT:
Threads are lightweight processes because they have their own stack but can access shared data.
Because threads share the same address space as the process and other threads within the
process, the operational cost of communication between the threads is low, which is an
advantage.
The many–to–one model maps many user threads to one kernel thread.
The one–to–one model maps one user thread to one kernel thread.
The many–to–many model maps many user threads to smaller or equal kernel threads.
EXPLANATION
Additional Information
English Get Started
Multiple threads of the same process share other resources of the process except for register, stack, and
stack pointer. In particular, a process is generally considered to consist of a set of threads sharing an
address space, heap, static data, code segments, and file descriptors.
Thread of the same process doesn't share program counter (register), stack, registers
EE
FR
Trusted by 5.7 Crore+ Students
India’s #1 Learning Platform
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 23/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Related MCQ
Process MCQ
Schedulers MCQ
Exams
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 24/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Test Series
CTET Mock Test TCS Mock Test CUET Maths Mock Test NABARD Development
CUET Mock Test CDS Mock Test SSC GD Constable Mock Assistant Mock Test
NEET Mock Test MP GK Mock Test Test MAH MBS CST Mock Test
JEE Main Mock Test TCS NQT Mock Test IBPS SC Mock Test UGC NET English Mock Test
SSC CHSL Mock Test IBPS RRB PO Mock Test ESIC SSO Mock Test CUET Political Science Mock
NDA Mock Test SSC Stenographer Mock Infosys Mock Test Test
IBPS PO Mock Test Test CUET Physics Mock Test FCI Manager Mock Test
IBPS Clerk Mock Test WB TET Mock Test Haryana CET Mock Test CUET Chemistry Mock Test
SBI PO Mock Test RBI Assistant Mock Test Indian Army GD Mock Test IB Security Assistant Mock
UGC NET Paper 1 Mock REET Test Series UPPCL Executive Assistant Test
Test RRB NTPC Mock Test Mock Test CSIR NET Life Science Mock
AFCAT Mock Test LIC ADO Mock Test ECGC PO Mock Test Test
RRB Group D Mock Test UGC NET Commerce Mock NIMCET Mock Test UTET Test Series
AMCAT Mock Test Test CUET Economics Mock Test
LIC AAO Mock Test CAT Exam Mock Test CUET History Mock Test
SuperCoaching
UPSC CSE Previous Year Delhi Police Constable Bihar Police Constable SSC CPO Previous Year
Papers Previous Year Papers Previous Year Papers Papers
SSC CGL Exam Previous RRB Office Assistant SSC MTS Previous Year UPSC NDA Previous Year
Year Papers Previous Year Papers Papers Papers
UGC NET Previous Year IBPS RRB PO Previous Year SSC CHSL Previous Year CDS Previous Year Papers
Papers Papers Papers AFCAT Previous Year Papers
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 25/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
MP Police Constable UP Police Constable Bihar Police SI Previous Year EPFO SSA Previous Year
Previous Year Papers Previous Year Papers Papers English Papers Get Started
Chandigarh Police UPSC CSAT Question Paper SSC Havaldar Previous Year UP Police SI Previous Year
Constable Previous Year Maharashtra Talathi Papers Papers
Papers Previous Year Papers UPSC CAPF AC Previous SSC JE Previous Year Papers
DDA ASO Previous Year CSIR NET Previous Year Year Papers SSC JE ME Previous Year
Papers Papers Indian Airforce Agniveer Papers
Maharashtra FOREST RBI GRADE B Previous Year Previous Year Papers SSC JE EE Previous Year
GUARD Previous Year Papers OSSC CGL Previous Year Papers
Papers IBPS CLERK Previous Year Papers SSSC JE CE Previous Year
Papers Papers
Latest Updates
EPFO Personal Assistant EMRS Hostel Warden BEML ITI Trainee Admit Haryana PGT Subject
ESIC Nursing Officer Answer Key Card Knowledge Test Date
BSPHCL JE EE BIhar Senior Secondary OPSC Dental Surgeon IOB SO
BSPHCL Technician Teacher 2nd Provisional Reject List SSC MTS Exam Dates 2024
WB Police Constable Answer Key APPSC Group 2_(State PSC) SSC CGL Exam Dates 2024
UPSSSC JE UP Polytechnic Lecturer OSSC Combined Technician SSC Stenographer Exam
Kolkata Police Constable MSEDCL Junior Assistant Services_(Engineering) Dates 2024
UPPSC APS Result SSC Head Constable Result BARC DAE SSC GD Constable Exam
WB Gram Panchayat APSC Assistant Engineer RPSC RAS Final Marks Dates 2024
BDL MT Result Last Date Extended HPPSC HPAS Mains Admit WRD Maharashtra
TNPSC AAO Admit Card MP High Court District Card Enumalator
MHSRB Staff Nurse Final Judge Answer Key IOCL Apprentice Admit JSSC Inter Level
Selection List UPPSC Staff Nurse Card Bihar Teacher Admit Card
Bihar Police Prohibition SI UKPSC JE Exam Dates OPSC Ayurvedic Officer WBPSC Junior Inspecting
Marksheet Bombay High Court Admit Card Officer
UIIC Assistant Stenographer UPSC IES Final Result Employment News PDF
PGCIL Junior Technician BEML Diploma Trainee ITBP Tradesman Result
Trainee Admit Card Admit Card
Skill Academy
Data Science with Python Business Analyst Course Full Stack Development
Course Digital Marketing Course Course
MCQ Questions
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 26/27
6/2/24, 12:14 AM Thread MCQ [Free PDF] - Objective Question Answer for Thread Quiz - Download Now!
Kharghar, Books
Navi Mumbai - 410210
[email protected]
Toll Free:
1800 833 0800
Office Hours: 10 AM to 7 PM
(all 7 days)
Copyright © 2014-2022 Testbook Edu Solutions Pvt. Ltd.: All rights reserved User Policy Terms Privacy
https://testbook.com/objective-questions/mcq-on-thread--5eea6a1539140f30f369f32b 27/27