Venturcom's RTX does not extend Windows XP and Windows XP Embedded to satisfy hard real time guarantees by ________.

a) never masking real-time interrupts
b) reimplementing sections of the microkernel involved in interrupt dispatching
c) increasing scheduling flexibility by implementing 128 thread priority levels
d) waking threads waiting for a protected resource in priority order rather than FIFO order


b) reimplementing sections of the microkernel involved in interrupt dispatching

Computer Science & Information Technology

You might also like to view...

Describe the systems development method you plan to use, and explain the pros and cons of using this method.

What will be an ideal response?

Computer Science & Information Technology

What exception type does the following program throw?

``` public class Test { public static void main(String[] args) { System.out.println(1 / 0); } }``` a. ArithmeticException b. ArrayIndexOutOfBoundsException c. StringIndexOutOfBoundsException d. ClassCastException e. No exception

Computer Science & Information Technology

Suppose a method p has the following heading:

``` public static int[] p() What return statement may be used in p()? ``` a. return 1; b. return {1, 2, 3}; c. return int[]{1, 2, 3}; d. return new int[]{1, 2, 3};

Computer Science & Information Technology

Give three examples of hidden files shown in the output of ls -la above.

Work with hidden files in Linux. a. In Linux, files with names that begin with a β€˜.’ (single dot) are not shown by default. While dot-files have nothing else special about them, they are called hidden files because of this feature. Examples of hidden files are .file5, .file6, .file7. b. Use ls -l to display the files stored in the analyst home directory.

[analyst@secOps ~]$ ls –l
c. Use the ls -la command to display all files in the home directory of analyst, including the hidden files.
[analyst@secOps ~]$ ls –la
d. Type the man ls command at the prompt to learn more about the ls command.
[analyst@secOps ~]$ man ls
e. Use the down arrow key (one line at a time) or the space bar (one page at a time) to scroll down the page and locate the -a used above and read its description to familiarize yourself with the ls -a command.

Computer Science & Information Technology