JIT compiler
Explain the purpose of the JIT compiler in .NET Framework?
Expert
JIT compiler is the key element of CLR that loads MSIL on target machines for execution. MSIL is stored in .NET assemblies after the developer has compiled the code which is written in any .NET-compliant programming language, such as C# and Visual Basic
JIT compiler translates the MSIL code of an assembly and uses CPU architecture of the target machine to execute .NET applications. It also stores the resulting native code so that it is accessible for subsequent calls. If a code which is executing on the target machine calls a non-native method, the JIT compiler changes the MSIL of that method into the native code. JIT compiler also implements type-safety in runtime environment of .NET Framework. It also checks for values that are passed as parameters to any method.
For instance, JIT compiler identifies any event, if a user tries to assign 32-bit value to a parameter which can only accept a 8-bit value.
Explain the role of CLR in .NET Framework.
Is it possible to write a class without specifying the namespace? Write the namespace to which it belongs by default?
State the advantages Web services have over the Component Object Model (COM) and also the Distributed Component Object Model (DCOM)?
Explain what is the CLI and also if it is same as that of CLR?
List the types of Cookies that are available in ASP.NET?
Describe the naming conventions that are necessary for XML elements tags?
Write down the main core services of WWF runtime in brief.
State the use of DropDownStyle property of the ComboBox control?
What are the rules and regulations which should be followed while creating the well-formed XML document?
Define the term Manifest?
18,76,764
1925938 Asked
3,689
Active Tutors
1449208
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!