logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • What is the role of the JIT compiler in .NET Framework?


  • Correct Answer
  • The JIT compiler is an important element of CLR, which loads MSIL on target machines for execution The MSIL is stored in NET assemblies after the developer has compiled the code written in any NET-compliant programming language, such as Visual Basic and C# JIT compiler translates the MSIL code of an assembly and uses the CPU architecture of the target machine to execute a NET application It also stores the resulting native code so that it is accessible for subsequent calls If a code executing on a target machine calls a non-native method, the JIT compiler converts the MSIL of that method into native code JIT compiler also enforces type-safety in runtime environment of NET Framework It checks for the values that are passed to parameters of any method For example, the JIT compiler detects any event, if a user tries to assign a 32-bit value to a parameter that can only accept 8-bit value 


  • Technology problems


    Search Results


    • 1. The syntax of capture events method for document object is..
    • Discuss
    • 2. What is String Args in Java?
    • Discuss
    • 3. Why static methods cannot access non static variables or methods?
    • Discuss
    • 4. Explain static and dynamic memory allocation with an example each.
    • Discuss
    • 5. What is the difference between Tags and HTML Elements ?
    • Discuss
    • 6. Which of the following gives the memory address of the first element in array?

    • Options
    • A. array[0];
    • B. array[1];
    • C. array(2);
    • D. array;
    • Discuss
    • 7. What JSON framework is supported by iOS (iPhone OS) ?
    • Discuss
    • 8. What are the features added in iOS 9 ?
    • Discuss
    • 9. What is the purpose of UIWindow object?
    • Discuss
    • 10. Write an SQL Query to check whether date passed to Query is date of given format or not.
    • Discuss


    Comments

    There are no comments.

Enter a new Comment