Govt. Exams
Entrance Exams
Advertisement
Topics in C# Programming
What does MVC stand for in ASP.NET MVC?
Correct Answer:
A. Model-View-Controller
EXPLANATION
MVC (Model-View-Controller) is an architectural pattern separating data (Model), presentation (View), and business logic (Controller).
In ASP.NET Core, what is the purpose of the appsettings.json file?
Correct Answer:
A. To store application configuration settings
EXPLANATION
appsettings.json stores application configuration like connection strings, logging levels, and custom settings.
What does CLR stand for in the context of .NET?
Correct Answer:
A. Common Language Runtime
EXPLANATION
CLR (Common Language Runtime) is the virtual machine that executes .NET code, managing memory, security, and type safety.
Which of the following is the latest version of ASP.NET as per 2024-2025?
Correct Answer:
B. ASP.NET Core 8.0
EXPLANATION
ASP.NET Core 8.0 is the latest unified platform as of 2024-2025, replacing the older ASP.NET Framework.
What is the primary purpose of ASP.NET in web development?
Correct Answer:
A. A server-side framework for building dynamic web applications
EXPLANATION
ASP.NET is a server-side web application framework developed by Microsoft for building dynamic, interactive web applications.