Chapter 7 : Role of Multithreading in Multitasking Flashcards

1
Q

What is process?

A
  1. Any program in execution
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is multitasking ?

A
  1. Refers to the ability of an operating system to manage the execution of multiple tasks simultaneously
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the types of multitasking?

A
  1. Preemptive Multitasking
  2. Cooperative Multitasking
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Preemptive Multitasking?

A
  1. The operating system decides when to switch between tasks
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Cooperative Multitasking?

A
  1. Each task decides when to give up control of the CPU
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is Multithreading?

A
  1. Concurrent execution of multiple threads within a single process
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a threads in Multithreading?

A
  1. Each threads perform a specific task independently while sharing the process’s resource
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

List out 3 points Multithreading enhances Multitasking

A
  1. Efficiency
  2. Responsiveness
  3. Parallelism
  • No multithread , no multitasking
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How does multithreading improves the efficiency?

A
  1. Allowing multiple tasks to run concurrently within a single process, reducing the need for context switching
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Why does multithreading improves responsiveness?

A
  1. Making it easier to handle user inputs, background tasks, and processing simultaneously
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Why does multithreading provide parallelism?

A
  1. Enables better use of CPU resources by allowing threads to be distributed across multiple
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

List out 3 the Advantages of Multithreading in Multitasking

A
  1. Reduced Overhead
  2. Resource Sharing
  3. Improved Application Performance
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How does Multithreading reduce overhead?

A
  1. Threads shara the same memory space, reducing the overhead associated with interprocess communication and context switching
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Why resource sharing in Multithreading is an advantages?

A
  1. Easier resource sharing among threads within the same process compared to separate processes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

How does Multithreading improve the application performance?

A
  1. More efficient use of CPU time, especially in I/O - bound and computationally intensive task
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

List out the 3 disadvantages of Multithreading in Multitasking

A
  1. Compatibility Issues
    • Difficulty in ensuring different systems work together
  2. Network Integration
    • Connecting different network for seamless communication, data security concerns
  3. Human Factors
    • Resistance to change, need for ongoing training and support
17
Q

List out 2 challenges of multithreading in multitasking

A
  1. Complexity in Synchronization
  2. Debugging Difficulties
18
Q

How to prevent complexity in synchronization?

A
  1. Ensuring that threads don’t interfere with each other when accessing shared resources
19
Q

How to prevent debugging difficulties?

A
  1. Multithreaded applications can be harder to debug due to potential issues like race conditions, deadlocks, and non-deterministic behevior