Curioustab
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
Aptitude
General Knowledge
Verbal Reasoning
Computer Science
Interview
Take Free Test
.NET Framework Questions
.NET deployment: which type of assemblies are stored in the Global Assembly Cache (GAC)?
.NET Framework fundamentals: which description best characterizes what the .NET Framework provides for developers and execution?
Managed Code in .NET: which statement most accurately defines it?
.NET Framework components: which items are parts of the .NET Framework itself?
In Microsoft .NET, which component actually reclaims memory for objects that no longer have live references on the managed heap?
Just-In-Time (JIT) compilation in .NET: which combination of statements correctly describes what JIT does and how JIT-compiled code executes?
Common Language Runtime (CLR): which set of responsibilities correctly reflects what CLR provides to managed applications?
Benefits of running managed code under the CLR: which combination is true for code safety and resource management?
Which statement about the .NET Framework is correct with respect to interoperability and distributed application support?
.NET Framework design goals: which statements are NOT true about the platform's objectives and programming model?
In the .NET type system, what is the root of the entire type hierarchy from which all types ultimately derive?
Garbage Collector responsibilities: which items are NOT performed by the GC in .NET?
Security in .NET applications: which combination reflects built-in security models commonly associated with the .NET Framework?
Constituents of the .NET Framework: which pair lists core framework components rather than application types built on top of it?
Which of the following are valid .NET CLR JIT performance counters? 1) Total memory used for JIT compilation 2) Average memory used for JIT compilation 3) Number of methods that failed to compile with the standard JIT 4) Percentage of processor time spent performing JIT compilation 5) Percentage of memory currently dedicated for JIT compilation
Which of the following statements are TRUE about the .NET CLR? 1) It provides a language-neutral development and execution environment. 2) It ensures an application cannot access memory it is not authorized to access. 3) It provides services to run "managed" applications. 4) The resources are garbage collected. 5) It provides services to run "unmanaged" applications.
In the .NET Framework, which component provides an extensible set of reusable classes accessible from any .NET-compliant language?
Which utility compiles managed assemblies to processor-specific native images ahead of time (AOT) to improve startup performance?
In .NET terminology, code that targets and executes under the Common Language Runtime (CLR) is known as:
.NET Assembly — identify the correct statements: 1) It is the smallest deployable unit. 2) Each assembly has only one entry point (Main, WinMain, or DllMain). 3) An assembly can be a Shared assembly or a Private assembly. 4) An assembly can contain only code and data. 5) An assembly is always an EXE file.