wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

PIC_RTOS_1

Total questions: 10

Worksheet time: 8mins

Name
Class
Date
1.

Saving the content of the CPU registers and loading the new task parameter is called ?

a)

Semaphore

b)

Context Switching

c)

Stacking

d)

Interrupt

2.

The kernel object determines which task should be run next is called

a)

Scheduler

b)

Semaphore

c)

ISR

d)

Mutex

3.

Example of kernel object is

a)

File system

b)

Device manager

c)

Task

d)

Communication software

4.

The task which are ready to run are kept in a queue and the CPU serves the task on first come first served basis is called

a)

Round robin with Priority

b)

Shortest Job First

c)

Round Robin

d)

FIFO

5.

In _____algorithm , kernel allocates a certain amount of time for each task waiting in the queue.

a)

FIFO

b)

Round Robin

c)

Shortest Job First

d)

Preemptive

6.

In which algorithm, task require minimum time for execution given more priority?

a)

FIFO

b)

Round Robin

c)

Shortest Job First

d)

Round Robin with Priority

7.

The hardware signal that informs the CPU that an important event occurred.

a)

Signal

b)

Scheduler

c)

Task

d)

Interrupt

8.

The maximum time for which interrupts are disabled + time to start the execution of the first instruction in the ISR is called ?

a)

Interrupt Recovery Time

b)

Interrupt Latency

c)

Interrupt Response Time

d)

Interrupt delay

9.

Example for scheduling algorithms in RTOS

a)

FIFO

b)

Shortest Job First

c)

Round Robin

d)

All of the above

10.

______is the software module that is executed when the hardware requests an interrupt

a)

ISR

b)

Queue

c)

Scheduler

d)

Algorithm