what is dotnet architecture? can anyone explain that.

Answers were Sorted based on User's Feedback



what is dotnet architecture? can anyone explain that...

Answer / vijay

Architecture of .Net is based on CLR. CLR is the Common
Language Runtime which runs as virtual machine on Operating
System. CLR manages execution of code right from memory
allocation to Garbage collection. CLR consists of CLS and
CTS. Every program that is written in .NET runs on CLR. We
can write code on different languages which should be
compliant with CLS. Languages like C#.net,VB.net,J#.net are
supported by CLR. All code written in such language is
knwon as Managed Code. With the help of such language,
different types application like, Console Based, Web based
and windows based can be written. Also it can uses ADO.NET
for backend connectivity.

Is This Answer Correct ?    5 Yes 0 No

what is dotnet architecture? can anyone explain that...

Answer / Amber Goel

The .NET architecture is a software framework developed by Microsoft. It provides a common runtime environment (CLR), class libraries, and tools to build, deploy, and run applications on various platforms (Windows, Linux, macOS). The core components of the .NET architecture include:n- Common Language Runtime (CLR): Provides services like memory management, security, interoperability, and exception handling.n- Framework Class Library (FCL): A collection of predefined classes and namespaces to perform common programming tasks.n- Just In Time Compiler: Converts high-level managed code into native machine code at runtime.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

Can you edit data in repeater control? How?

1 Answers  


What is namespace in .net?

1 Answers  


Usually in .net, the clr takes care of memory management. Is there any need for a programmer to explicitly release memory and resources? If yes, why and how?

1 Answers  


What is the need of OLE-automation?

1 Answers   CGI,


Explain the difference between static page and dynamic page?

1 Answers  


How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?

1 Answers  


Please explain what is immutability, what is it for and how is it codified?

1 Answers  


What are three common acronyms used in .net, and what do they stand for?

1 Answers  


What are HTML controls, Web controls, and server controls?

1 Answers  


What is Assembly manifest? what all details the assembly manifest will contain.

1 Answers  


What do you mean by Code Access Security in .NET?

1 Answers  


Which file is taken by compiler when we have both file Application and Server Configuration file?

1 Answers  


Categories