--%>

Explain win 3.1 supports which form of multi tasking

Explain win 3.1 supports which form of multi tasking?

E

Expert

Verified

Win3.1 assists co-operative multi-tasking. When a process is specified the control for execution, the other tasks have to wait till the current has relinquished its execution.

But WinNT is preemptive multi-tasking. Any process can be stopped within the middle when another process requires CPU cycle. It is handled through the windows OS.

   Related Questions in Programming Languages

  • Q : Explain Command-line argument

    Command-line argument: The arguments passed to a program whenever it is run. The Java program receives such in the single formal argument to its major method: public static void main(String[] args)

  • Q : What is Primitive Type Casting

    Primitive Type Casting: C/C++ allows you to cast between totally unrelated types. This can be problematic for model checking. Avoid type casting between unrelated types and in particular primitive types. For example,

    Q : What is Bridging method Bridging method

    Bridging method: A method which offers a bridge between methods of a class's public interface and its private implementation. Bridging methods will usually contain non-public visibility.

  • Q : Explain the java applets with a

      APPLET: an applet is an application designed to tra

  • Q : CPU programming When a process enters

    When a process enters the CPU, your program must now "fork"and "exe" a stand alone child process. You MUST use "glxgears" for the child process.                            When a context switch occurs

  • Q : One-time signature scheme Define

    Define one-time signature scheme?

  • Q : File handling modes and corresponding

    Q : Use of System Dynamic and System Runtime

    What is the use of System.Dynamic and System.Runtime.CompilerServices namespaces?

  • Q : What is an Unchecked exception

    Unchecked exception: An exception for which it is not needed to give a local try statement or to propagate through a throws clause stated in the method header. An exception which is not handled will cause program annihilation when it is thrown.

  • Q : Define the term Boolean Boolean : It is

    Boolean: It is one of the Java's primitive types. The Boolean type has merely two values: true and false.