Types of JIT and what is econo-JIT ?
Answers were Sorted based on User's Feedback
Answer / ankita
PRE-JIT: Pre-JIT compiles source code into native code in a
single compilation cycle.
ECONO-JIT: It compiles only those methods that are called
at runtime. However, these compiled methods are removed
when they are not required.
Normal-JIT: Normal-JIT compiles only those methods that are
called at runtime. These methods are compiled the first
time they are called, and then they are stored in cache.
When the same methods called again, the compiled code from
cache is used for execution.
| Is This Answer Correct ? | 36 Yes | 3 No |
Answer / sandhya n bensy
Pre-JIT (Compiles entire code into native code at one
stretch)
Ecno-JIT (Compiles code part by part freeing when
required)
Normal JIT (Compiles only that part of code when called
and places in cache)
| Is This Answer Correct ? | 16 Yes | 6 No |
Answer / subhashini.g
Pre-JIT (Compiles entire code into native code at one
stretch)
Ecno-JIT (Compiles code part by part freeing when
required)
Normal JIT (Compiles only that part of code when called
and places in cache)
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / kalyankrishna
Pre-JIT : Per-JIT compiler compiles source code into native
code in a single compilation cycle. Pre-JIT sits at the
stage of deployment of the application.
Ecno -JIT:
Econo-JIT compiles methods that are called at runtime.
However, these compiled methods are discarded when they’re
not required.
Normal JIT:
Normal JIT only compiles the methods which are called at
runtime.
These methods are compiled the first time they’re called and
then they’re stored in cache. When the same methods are
called again, the compilation code from cache is used for
execution.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / sanket
can i get specific answer with example? with simple language?
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain what is the difference between a class and an object, and how do these terms relate to each other?
Is .net core installed?
Is the COM architecture same as .Net architecture? What is the difference between them (if at all there is)?
What operating systems does the .net framework run on?
What is a metadata in .net?
What is the difference between server.transfer and response.redirect? Why?
Explain the code behind wors and contrast that using the inline style.
What is CCW (COM Callable Wrapper) ?
What is DTS and explain the purpose of it?
What are the new thee features of com+ services, which are not there in com (mts)?
Tell us the differences between an interface and an abstract class in .net?
What is .net technology?