What is run time environment?

RuntimeEnvironment

Runtime Problem Overview


Can some one explain what it means in simple terms. Does it mean the environment (DOS, Windows, Linux, etc) where the application codes are run?

Runtime Solutions


Solution 1 - Runtime

Distinguish this from Development Environments and Build Environments.

You will tend to find a hierarchy here.

Run time environment - Everything you need to execute a program, but no tools to change it.

Build environment- Given some code written by someone, everything you need to compile it or otherwise prepare an executable that you put into a Run time environment. Build environments are pretty useless unless you can see tests what you have built, so they often include Run too. In Build you can't actually modify the code.

Development environment - Everything you need to write code, build it and test it. Code Editors and other such tools. Typically also includes Build and Run.

Solution 2 - Runtime

Yes, including all the settings (like environment variables), common libraries(!), directory structure, network neighbors e.t.c

Solution 3 - Runtime

The runtime environment can also be a virtual machine, such as the JRE (Java Runtime Environment) or CLR (Common Language Runtime) for .NET framework.

What is the target of your program? Does the program run on top of the JRE, CLR? Or are you compiling into a binary file that is run by your operating system?

The main question is what is that target of your program. How will your program be executed?

Solution 4 - Runtime

As soon as a software program is executed, it is in a run-time state. In this state, the program can send instructions to the computer's processor and access the computer's memory (RAM) and other system resources. RTE allows the program to be run in an environment where the programmer can track the instructions being processed by the program and debug any errors that may arise. While developers use RTE software to build programs, RTE programs are available to everyday computer users as well,e.g software such as Adobe Flash Player

Source

Solution 5 - Runtime

To add to the other answers given, I would say that Runtime environment is an environment, which supports the execution of a program/process. A program, for being able to execute, requires runtime environment. Runtime environment provides following services to the program/process :-

  • Resident Memory
  • Resources such as File, Sockets, etc.
  • Environment variables
  • Proper initialization
  • Proper disposal.

In short, Runtime environment is for the program, what physical environment is to us. Program/process can't sustain without runtime environment.

Solution 6 - Runtime

I am working on compilers and the Runtime environment means ,it is the structure of the target computers registers and memory that serves to manage memory and maintain information needed to guide the execution process. > infact, almost all programming languages use one of three kinds of runtime environment,whose essential structure does not depend on the specific details of the target machine.

These three kind of runtime environmenta are

  1. fully static environment( example FORTRAN77)
  2. stack-based environment(C,C++)
  3. Fully dynamic environment(LISP)

Solution 7 - Runtime

It refers to the collection of software and hardware resources that enable a software program to be executed on a computer system. The runtime system is a composite mechanism designed to provide program execution services, regardless of the programming language being used

Solution 8 - Runtime

Simple and Generic definition

Let's not make it so complicated, in context of software engineering a runtime environment is simply an environment that a piece of software needs to run.

For example you might have Googled PC Requirements for GTA-V and you found the following answer:

Minimum System Requirements:

  • OS: Windows 8.1 64 Bit, Windows 8 64 Bit, Windows 7 64 Bit Service Pack 1
  • Processor: Intel Core 2 Quad CPU Q6600 @ 2.40GHz (4 CPUs) / AMD Phenom 9850 Quad-Core Processor (4 CPUs) @ 2.5GHz
  • Memory: 4GB
  • Video Card: NVIDIA 9800 GT 1GB / AMD HD 4870 1GB (DX 10, 10.1, 11)
  • Sound Card: 100% DirectX 10 compatible
  • HDD Space: 65GB

What are these? These are the environment variables which you need to run GTA-V, another way to say the same thing is:

This is runtime environment for GTA-V.

Take example of Node.js, when you say Node.js is JavaScript runtime environment you simply mean that Node.js provides everything (from software perspective) to run JavaScriptic code on the hardware (Mobiles, Laptops, etc). That everything includes interfaces to the Operating Systems of that particular hardwares.

> Note: Both of the below statements are correct:

  • Node.js is JavaScript runtime environment (RTE).
  • Node.js and OS on which Node.js is installed makes Runtime Environment for JavaScript.
Technical definition

Runtime environment, primarily implements portions of an execution model.

The execution model specifies the behavior of elements of the language. By applying the execution model, one can derive the behavior of a program that was written in terms of that programming language.

Ok I know that console.log("Hi") shows me hi on the console, but how this behaviour of that particular string (console.log) is achieved?
Some or all the underlying steps which were taken between the execution of code and logging of the output constitue runtime environment.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionrockbalaView Question on Stackoverflow
Solution 1 - RuntimedjnaView Answer on Stackoverflow
Solution 2 - RuntimeBarsMonsterView Answer on Stackoverflow
Solution 3 - Runtimeluther07View Answer on Stackoverflow
Solution 4 - RuntimeAbhishek JaiswalView Answer on Stackoverflow
Solution 5 - RuntimeMangu Singh RajpurohitView Answer on Stackoverflow
Solution 6 - RuntimeAnil KumarView Answer on Stackoverflow
Solution 7 - RuntimeDeepak VermaView Answer on Stackoverflow
Solution 8 - RuntimeKristieView Answer on Stackoverflow