Chapter 13: Concurrency Flashcards

1
Q

A process is a group of associated threads that execute in the same shared environment.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A thread is the smallest unit of execution that can be scheduled by the operating system. If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A single-threaded process contains exactly one thread, whereas a multi-threaded process supports more than one thread.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A single process has shared memory between its threads.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A task is a single unit of work performed by a thread.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The property of executing multiple threads and processes at the same time is referred to as concurrency.
If false, why?

A

True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Operating systems use a thread scheduler to determine which threads should be currently executing.
If false, why?

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Local variables are shared among all threads within a process.
If false, why?

A

Local variables are stored on the stack and are thread-specific.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Static methods and variables are unique to each thread within a process.
If false, why?

A

Static methods and variables are shared among all threads in the same process.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A context switch occurs when a thread completes execution and terminates.
If false, why?

A

A context switch happens when a thread’s execution is paused to allow another thread to run.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A thread scheduler guarantees an equal amount of CPU time for every thread.
If false, why?

A

The scheduler may use different strategies, and priorities can affect execution time.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A thread cannot interrupt another thread, even if it has a higher priority.
If false, why?

A

A higher-priority thread can supersede a lower-priority thread in scheduling.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

CPUs are directly connected to the OS thread scheduler.
If false, why?

A

The OS thread scheduler manages threads, but CPUs execute instructions independently.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

A thread can execute multiple tasks at the same time.
If false, why?

A

A thread can only execute one task at a time but can switch between tasks.
(False)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly