RE: what is a jitter and how many types of jitters are there?
JIT is just in time complier. it categorized into three: 1 Standard JIT : prefered in webApp-----on diamand 2 Pre JIT : only one time------only use for window App 3 Economic JIT : use in mobile App
RE: what is a jitter and how many types of jitters are there?
When your application actually exectutes the MSIL Code is Just in time compiled into machine code by JITTER( Just in time Compiler) Normally your entire application is not compiled from MSIL to machine code only methods that are actually called during execution are compiled.