What does it mean for an operating system to support multitasking? How is multitasking different from time sharing?

What will be an ideal response?

Multitasking is where a single user can have multiple programs executing simultaneously. On a single processor computer, this is accomplished by the operating system which quickly switches control of the CPU between programs. Time sharing is similar to multitasking, except that the programs sharing the computer belong to different users. In a sense, multiple users share the CPU via time sharing.

Computer Science & Information Technology

You might also like to view...

Which of the following is not one of the three levels NIST defines within an organization that should coordinate the framework implementation and a common flow of information?

A) Management B) Implementation/Operations C) Executive D) Business/Process

Computer Science & Information Technology

Answer the following statements true (T) or false (F)

1. The statement c = d; checks to see if variables c and d have the same value 2. If x is a type double variable and n is of type int, the following assignment statements are equivalent. x = n; x = (double)n; 3. If the value of x is 735, the statement printf("%4d", x); will display four blanks followed by 735. 4. The value of the expression x + y * z * z is always the same as the value of x + ((y * z) * z) 5. A type char literal is enclosed in single quotes.

Computer Science & Information Technology