What is the intermediate Language in .Net ?
D
Correct answer
Explanation
MSIL (Microsoft Intermediate Language) is the intermediate language in .NET. When you compile .NET code, it's converted to MSIL, which is then converted to native machine code by the JIT compiler at runtime. This allows .NET code to be language-agnostic.