Microsoft.NET Question:
Download Job Interview Questions and Answers PDF
Explain What does managed mean in the .NET context?
Answer:
The executed by the CLR environment it is called Managed Code, which can provide security, Exception Handling and Memory Management (Garbage Collection). Provide Type Safe.
It becomes light weighted code.
The code which are all run under the CLR(Common Language Runtime) is called managed code.
The code which starts with unsafe doesn't run under CLR, called unmanaged code.
managed code is the safe code that couldnot make any harmful activities knowingly or unknowingly to the developer.
managed code is the secured harmless code without the developers knowledge.
It becomes light weighted code.
The code which are all run under the CLR(Common Language Runtime) is called managed code.
The code which starts with unsafe doesn't run under CLR, called unmanaged code.
managed code is the safe code that couldnot make any harmful activities knowingly or unknowingly to the developer.
managed code is the secured harmless code without the developers knowledge.
Download Microsoft.NET Interview Questions And Answers
PDF
Previous Question | Next Question |
Explain garbage collection? | How to customize the trace output? |