[ DOT NET Programming MCQS ]

झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।

[ DOT NET Programming MCQS ]

Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
101. ASP.NET Core में Endpoint Routing का मुख्य उद्देश्य क्या है?
[A] Request को specific endpoint से match करना
[B] Database delete करना
[C] File compress करना
[D] UI render करना
101. What is the main purpose of endpoint routing?
[A] Match request to endpoint
[B] Delete database
[C] Compress file
[D] Render UI
सही उत्तर: Request को specific endpoint से match करना
व्याख्या: Modern routing system provide करता है।
Correct Answer: Match request to endpoint
Explanation: Provides modern routing system.
102. Minimal API क्या है ASP.NET Core में?
[A] Lightweight API development approach
[B] Database system
[C] File system
[D] Compiler
102. What is Minimal API in ASP.NET Core?
[A] Lightweight API approach
[B] Database system
[C] File system
[D] Compiler
सही उत्तर: Lightweight API development approach
व्याख्या: Less code में API बनाने का तरीका है।
Correct Answer: Lightweight API approach
Explanation: Used for minimal code APIs.
103. ASP.NET Core में IConfigurationRoot क्या करता है?
[A] Configuration data load करता है
[B] Database delete करता है
[C] UI render करता है
[D] File compress करता है
103. What does IConfigurationRoot do?
[A] Loads configuration
[B] Deletes database
[C] Renders UI
[D] Compresses file
सही उत्तर: Configuration data load करता है
व्याख्या: Configuration sources read करता है।
Correct Answer: Loads configuration
Explanation: Reads configuration sources.
104. Kestrel server क्या है?
[A] Cross-platform web server
[B] Database server
[C] File server
[D] Mail server
104. What is Kestrel server?
[A] Web server
[B] Database server
[C] File server
[D] Mail server
सही उत्तर: Cross-platform web server
व्याख्या: ASP.NET Core का default server है।
Correct Answer: Web server
Explanation: Default ASP.NET Core server.
105. Reverse Proxy का उपयोग क्यों किया जाता है?
[A] Security & load balancing के लिए
[B] Database delete के लिए
[C] File upload के लिए
[D] UI design के लिए
105. Why is reverse proxy used?
[A] Security & load balancing
[B] Delete database
[C] Upload file
[D] Design UI
सही उत्तर: Security & load balancing के लिए
व्याख्या: Requests forward करता है backend server को।
Correct Answer: Security & load balancing
Explanation: Forwards requests to backend.
106. ASP.NET Core में Middleware short-circuiting क्या है?
[A] Request pipeline रोकना
[B] Database delete करना
[C] File compress करना
[D] UI render करना
106. What is middleware short-circuiting?
[A] Stops pipeline
[B] Delete database
[C] Compress file
[D] Render UI
सही उत्तर: Request pipeline रोकना
व्याख्या: Next middleware call नहीं करता।
Correct Answer: Stops pipeline
Explanation: Stops further middleware execution.
107. Microservices architecture क्या है?
[A] Small independent services system
[B] Single monolithic system
[C] Database only system
[D] UI system
107. What is microservices architecture?
[A] Independent services
[B] Monolithic system
[C] Database system
[D] UI system
सही उत्तर: Small independent services system
व्याख्या: Each service independent होती है।
Correct Answer: Independent services
Explanation: Each service works independently.
108. Monolithic architecture क्या है?
[A] Single large application
[B] Multiple services
[C] Database cluster
[D] UI framework
108. What is monolithic architecture?
[A] Single application
[B] Multiple services
[C] Database cluster
[D] UI framework
सही उत्तर: Single large application
व्याख्या: Sab components single app में होते हैं।
Correct Answer: Single application
Explanation: All components in one app.
109. ASP.NET Core में Hosted Service क्या होता है?
[A] Background running service
[B] Database service
[C] UI service
[D] File service
109. What is hosted service?
[A] Background service
[B] Database service
[C] UI service
[D] File service
सही उत्तर: Background running service
व्याख्या: Long running tasks execute करता है।
Correct Answer: Background service
Explanation: Runs background tasks.
110. Task Parallel Library (TPL) क्या है?
[A] Parallel programming framework
[B] Database system
[C] File system
[D] UI library
110. What is TPL?
[A] Parallel framework
[B] Database system
[C] File system
[D] UI library
सही उत्तर: Parallel programming framework
व्याख्या: Multiple tasks simultaneously execute करता है।
Correct Answer: Parallel framework
Explanation: Runs tasks in parallel.