answersLogoWhite

0

What is compiled time and run time?

Updated: 12/17/2022
User Avatar

Wiki User

14y ago

Best Answer

Compile time is when the compiler translates your source code into computer language. Run time is when the actual program runs.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is compiled time and run time?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the reason that script languages like ruby and PERL run slower than compiled languages?

The main reason is that in compiled languages, the compiler reads the code and turns it into object code before you run the program. Interpreted languages have to do this step while they are running. So the time to run a Perl program corresponds to the time it would take to compile, link, and run a C program, not to the time just to run it.


When are the javascript functions compiled?

JavaScript functions are compiled by the client machine at run-time. This is different than a lot of older code, but similar (at least in effect) to modern languages like C# and Java.


What is the difference between interpreted and parsed?

Interpreted means - normally - the code is interpreted at run-time, while parsed (actually, it's "compiled") means the code is translated to a native object file at compile-time, and then executed. Compiled code is usually faster, also.


What is a compiled program that runs on the client inside of an interpreted program?

As far as I know, interpreted software does not run compiled software at all.


How can you pass run-time arguments in java?

Once you have compiled your Java source files: javac MyClass.java You can run the resulting class file and pass arguments: java MyClass arg0 arg1 arg2


How does the inline mechanism in C reduce the run-time overheads?

inline functions are compiled very fastly and uses the free memory to boot it as soon as possible


Do compiled programs usually run faster because they are already in machine code?

No it is because compiled programs are scared so they run like stink. Plus, uncompiled programs, ie. source programs, do not run at all... neither slowly nor fast.


What is meant by java run time program?

Java is a semi compiled programming language. This means that when the program is written it is compiled into BinCode which is machine independent. When it arrives at your computer is is then compiled using the components of the Java runtime into code which can be executed on your computer (usually displayed in your browser). The Java runtime is the collection of library files compiler and virtual machine to make this possible.


Can you run a Visual Basic program from a Website?

In general principles, you can not run a visual basic compiled program from a website. Visual basic compiled program needs the library files required to run the application. So only when you install the application locally (onto your machine), the application can be executed.


Whats the difference between a net programming language and a normal one?

A .Net programming language is compiled not into machine language but "IL", or "Intermediate Language." This "IL" is then run against the .Net runtime and is "Just In Time" compiled into machine language to run the actual operations. Contrast that with a "Normal" one, where the compiler turns the code into the machine language of the target instruction set.


How do you run c program without ideon dos?

Once the application is compiled, there is no need for an IDE.


Will shell scripts run more quickly than compiled programs?

No, scripts are slower than compiled program, and shell scripts are especially slow, for they keep running external commands.