Recent questions tagged runtime-environment

0 votes
2 answers
61
In Storage allocation strategies the following strategies are there :1)Static Allocation2)Stack Allocation3)Heap AllocationWhat is the difference among all three?
5 votes
4 answers
67
Which of the following programming language(s) provides garbage collection automaticallyLispC++FortanC
3 votes
2 answers
68
When a function is recursively called, all automatic variables :are initialized during each execution of the functionare retained from the last executionare maintained in...
1 votes
1 answer
77
System programs such as Compiler are designed so that they are1) Recursive2) Serially usable3) Non reusable4) ReenterablePlease provide explanation too
1 votes
2 answers
80
If only one memory location is to be reserved for a class variable, no matter how many objects are instantiated, then the variable should be declared asexternstaticvolati...
21 votes
1 answer
82
The correct matching for the following pairs is$$\begin{array}{ll|ll} \text{(A)}&\text{Activation record} & \text{(1)} &\text{Linking loader} \\ \text{(B)} &\text{Locati...
14 votes
2 answers
86
A part of the system software which under all circumstances must reside in the main memory is:text editorassemblerlinkerloadernone of the above
19 votes
4 answers
87
Heap allocation is required for languages.that support recursionthat support dynamic data structurethat use dynamic scope rulesNone of the above
24 votes
3 answers
89
Which languages necessarily need heap allocation in the runtime environment?Those that support recursion.Those that use dynamic scoping.Those that allow dynamic data stru...