What is JIT, what are types of JITS and their purpose ?
Answer Posted / santosh
There are three types of JIT copilers.
Pre-JIT. Pre-JIT compiles complete source code into native
code in a single compilation
cycle. This is done at the time of deployment of the
application.
Econo-JIT. Econo-JIT 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 are called again, the compiled
code from cache is
used for execution.
| Is This Answer Correct ? | 35 Yes | 3 No |
Post New Answer View All Answers
What is viewstategenerator?
What are the disadvantages of using session?
Explain how cookies work. Give an example of cookie abuse.
In which event of page cycle is the viewstate available?
When does a session actually start?
How can we secure the data which is send from client side to server? Like the login id and paasword needs to be authenticated on the server but we cannot send it in plain text into the server.One more thing we are not using the SSL here.
What is the basic purpose of the required field validator? How can you use a required field validator to check that the user changes the initial value of a text box? a listbox?
What are the page life cycle events?
Where sessions are stored?
Explain one critical mapping?
What is the use of service provider?
Do you support digital rights management to protect my videos?
What is data reader in asp.net?
Can master pages be nested?
Why do we need url encoding?