Which of the following statements are TRUE about the .NET CLR? It provides a language-neutral development & execution environment. It ensures that an application would not be able to access memory that it is not authorized to access. It provides services to run "managed" applications. All the above Which of the following utilities can be used to compile managed assemblies into processor-specific native code? gacutil ngen sn dumpbin Which of the following components of the .NET framework provide an extensible set of classes that can be used by any .NET compliant programming language? .NET class libraries Common Language Runtime Common Language Infrastructure Component Object Model Which of the following jobs are NOT performed by Garbage Collector? Freeing memory on the stack. Avoiding memory leaks. Freeing memory occupied by unreferenced objects. Closing unclosed database collections. Closing unclosed files. 1,2,3 3,5 1,4,5 3,4 Which o...