Priority inversion is solved by use of
Ans: priority inheritance protocol
Learn Everything Easily
Ans: priority inheritance protocol
provide preemptive kernels
from arrival of an interrupt to the start of the interrupt service routine
the amount of time that elapses from when an event occurs to when it is serviced.
Magnetic Flux Density Definition: Magnetic flux density or magnetic induction or magnetic field vector B at a point in a magnetic field is generally defined as the number of magnetic lines of induction passing through a unit area around that point placed normal to the lines of induction. The tangent to the line of induction at a … Read more
Top 150 Array Questions with Answers PDF 1. Which one of the following operations returns the first occurrence of bit 1 in bit arrays? a) Find First Zero b) Find First One c) Counting lead Zeroes d) Counting lead One Answer: Find First One 2. What does Hamming weight/population count mean in Bit arrays? a) Finding … Read more
Which of the following is not a disadvantage of bit array? a) Without compression, they might become sparse b) Accessing individual bits is expensive c) Compressing bit array to byte/word array, the machine also has to support byte/word addressing d) Storing and Manipulating in the register set for long periods of time Answer: Storing and Manipulating … Read more
Which of the following is not an advantage of bit array? a) Exploit bit level parallelism b) Maximal use of data cache c) Can be stored and manipulated in the register set for long periods of time d) Accessing Individual Elements is easy Answer: Accessing Individual Elements is easy
Which of the following bitwise operations will you use to toggle a particular bit? a) OR b) AND c) XOR d) NOT Answer: XOR
Which of the following bitwise operations will you use to set a particular bit to 0? a) OR b) AND c) XOR d) NAND Answer: AND
Which of the following bitwise operations will you use to set a particular bit to 1? a) OR b) AND c) XOR d) NOR Answer: OR