--%>

How virtual machine simplify writing distributed application

How does a virtual machine simplify the task of writing a distributed application?

E

Expert

Verified

A virtual machine simplifies the task of writing a distributed application as it provides followings;

  • Resource Naming and Namespace Management
  • Communication
  • Security Management
  • Event Handling
  • Thread Scheduling
  • Resource Management

   Related Questions in Programming Languages

  • Q : Explain Timesharing system Timesharing

    Timesharing system: It is an operating system which shares processor time among multiple processes by assigning each a time slice. Once a process's time slice has finished or expired, the other procedure is given a possibility to run.

  • Q : Main function of context switching What

    What is the main function of context switching?

  • Q : Explain the benefits of using MTS

    Explain the benefits of using MTS?

  • Q : Explain the difference between a

    Explain the difference between a computer process and thread.

  • Q : System Architecture for Windows

    Tell me about the System Architecture for Windows Programming?

  • Q : Problem on COBOL source code errors

    There are many errors in the following COBOL source code. Identify the errors and rewrite the program so that it contains no errors:IDENTIFICATION DIVISION   (Full stop required)PROGRAM ID. ERRORS-EXAMPLE.DATA DIVISION    (Fu

  • Q : Requirement of Timer control in AJAX

    Explain the requirement of a Timer control in the AJAX.

  • Q : Define Continuous simulation Continuous

    Continuous simulation: In a continuous simulation, the time ticks past at a regular rate which is applicable to the specific simulation scenario. At each and every tick, all the objects in the simulation are informed of the passage of time and updated

  • Q : Explain Declaration and initialization

    Declaration and initialization: It is a statement in which a variable is declared and instantly given its initial value. Three illustrations of declaration and initialization are as follows:     int

  • Q : Explain Try statement Try statement :

    Try statement: The try statement performs as an exception handler - a position where exception objects are caught and dealt with. In its most common form, it comprises of a try clause, one or more catch clauses and the finally clause.