Asp.net core interview question answer


 

1. What is .NET Core Framework, and how does it work?
.NET Core framework provides an open-source, accessible, and general-purpose platform to create and run applications onto different operating systems. The framework follows the object-oriented programming principles that we can use C#, .NET, VB, etc., programming languages. The framework provides various built-in tools such as packages, classes, libraries, APIs, and other functionalities. We can create a diverse range of applications.

It works as follows:
Once you have finished developing codes for required applications, you need to compile those application codes to Common Intermediate Language.
The framework uses an assembly file to store the compiled code with an extension (.dll or .exe)
Now, the Common Language Runtime (CLR) of the framework convert the compiled code to machine code (executable code) using the Just In Time (JIT) compiler.
At last, we can execute this executable code on any specific architecture used by developers.

Comments

Popular posts from this blog

How to maintain state in asp.net core

What is react and vite

How to find 2nd highest salary simple way in sql server