What is .NET web service?

It is a component that allows publishing of the application’s function on the web to make it accessible to the public. It resides on a Web server and provides information and services using standard Web protocols such as HTTP and Simple Object Access Protocol (SOAP). A .NET web service is a software component designed to … Read more

Explain the difference between Function and Stored procedure?

Stored Procedures are pre-compiled objects which execute the code when called for. While a Function is compiled and executed when it is called for. In the context of .NET interviews, explaining the difference between a function and a stored procedure typically revolves around their purpose, usage, and characteristics within a database management system (DBMS) such … Read more

What is MVC?

MVC is an architectural model for building the .Net applications. It stands for Model View Controller. It is easy to use and offers full control over the HTML. In the context of .NET development, MVC stands for Model-View-Controller. It is a software architectural pattern that separates an application into three main logical components: Model: The … Read more

What are the different parts of an Assembly?

The different parts of an Assembly are: i. Manifest – Also known as the assembly metadata, it has information about the version of an assembly. ii. Type Metadata – Binary information of the program. iii. MSIL – Microsoft Intermediate Language code. iv. Resources – List of related files. In .NET, an assembly is the fundamental … Read more

How is a Managed code executed?

The steps for executing a managed code are as follows: Choose a language compiler depending on the language of the code. Convert the code into Intermediate language using its own compiler. The IL is then targeted to CLR which converts the code into native code using JIT. Execution of Native code. In a .NET interview, … Read more