What method of sharing CPU time involves the OS executing an application for a particular period and according to its assigned priority?

A. cooperative multitasking
B. preemptive multitasking
C. voluntary multitasking
D. centralized multitasking

Answer: B

Computer Science & Information Technology

You might also like to view...

Which piece of test equipment can you use to test the throughput of a Cat 5 cable?

a. OTDR b. Multimeter c. BERT d. Cable certifier

Computer Science & Information Technology

What is the printout of the following code?

``` char s2[7] = "Dallas"; char s1[14] = "Dallas"; strcat(s1, s2); cout << s1; ``` a. Dallas b. DD c. DallasDallas d. D

Computer Science & Information Technology