runtime
Runtime (noun) means the period during which a program is actually running, as opposed to the time when it is being written or prepared. Example: “The value is not known until runtime, because it depends on what the user types.”
How to Use Runtime
Learner’s notesIn plain EnglishThe time when a program is actually running, or the software it needs in order to run.
Technical; also written as two words, run time, especially in the sense of duration.
Written as one word in computing and often as two, run time, when it simply means how long something takes.
Trace the full origin ↓Fill the Gap
Can you complete this real example?
The value is not known until _____, because it depends on what the user types.
Etymology
A compound of run and time, originally written as two words in computing and later closed up.
Synonyms
View more →Antonyms
Related Words
Rhymes for runtime
See all rhymes for runtime →Frequently Asked Questions
What is the difference between runtime and compile time?
Compile time is when your code is being translated and checked before it runs, so mistakes such as bad syntax are caught then. Runtime is when the finished program is actually executing, so problems that depend on real data, files or user input appear at that point instead.
What is a runtime error?
It is a failure that happens while a program is running rather than while it is being built, such as trying to open a file that is not there or dividing by zero. The program may stop, or handle the problem if it was written to expect it.
Is a runtime the same as a framework?
No. A runtime provides the basic machinery a program needs to execute, while a framework is a set of code and conventions you build your own application inside. A framework normally runs on top of a runtime.