100 Rapid Fire DotNet Questions Fresher
100 Rapid Fire DotNet Questions Fresher
1. What is .NET?
Answer: .NET is a free, open-source developer platform created by Microsoft for building many types of applications.
2. What is CLR?
Answer: CLR (Common Language Runtime) manages the execution of .NET programs.
3. What is CTS?
Answer: CTS (Common Type System) defines how types are declared, used, and managed in the runtime.
4. What is CLS?
Answer: CLS (Common Language Specification) is a set of base rules that .NET languages must follow to ensure
interoperability.
6. What is a class?
Answer: A class is a blueprint to create objects in OOP.
7. What is an object?
Answer: An object is an instance of a class.
8. What is a struct?
Answer: A struct is a value type that is used to encapsulate small groups of related variables.
32. What is the difference between .NET Framework and .NET Core?
Answer: .NET Core is cross-platform, lightweight, and modern; .NET Framework is Windows-only.