[ DOT NET Programming MCQS ]
झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।
[ DOT NET Programming MCQS ]
Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
131. ASP.NET Core में static files middleware क्या करता है?
[A] Static content serve करता है
[B] Database delete करता है
[C] File compress करता है
[D] UI render करता है
131. What does static files middleware do?
[A] Serve static content
[B] Delete database
[C] Compress file
[D] Render UI
सही उत्तर: Static content serve करता है
व्याख्या: wwwroot से files serve करता है।
Correct Answer: Serve static content
Explanation: Serves files from wwwroot.
132. ASP.NET Core में environment types कौन से होते हैं?
[A] Development, Staging, Production
[B] Local only
[C] Database only
[D] File only
132. What are environment types?
[A] Dev, Staging, Prod
[B] Local only
[C] Database only
[D] File only
सही उत्तर: Development, Staging, Production
व्याख्या: Different deployment environments होते हैं।
Correct Answer: Dev, Staging, Prod
Explanation: Deployment environments.
133. ASP.NET Core में LaunchSettings.json का use क्या है?
[A] Environment configuration
[B] Database file
[C] UI file
[D] Controller file
133. What is LaunchSettings.json used for?
[A] Environment config
[B] Database file
[C] UI file
[D] Controller file
सही उत्तर: Environment configuration
व्याख्या: Startup environment define करता है।
Correct Answer: Environment config
Explanation: Defines startup environment.
134. API throttling का उद्देश्य क्या है?
[A] Request limit control करना
[B] Database delete करना
[C] File upload करना
[D] UI render करना
134. What is API throttling?
[A] Limit requests
[B] Delete database
[C] Upload file
[D] Render UI
सही उत्तर: Request limit control करना
व्याख्या: Server overload रोकता है।
Correct Answer: Limit requests
Explanation: Prevents overload.
135. ASP.NET Core में caching types कौन से होते हैं?
[A] In-memory, distributed cache
[B] Only file cache
[C] Only DB cache
[D] Only UI cache
135. What are caching types?
[A] In-memory, distributed
[B] File only
[C] DB only
[D] UI only
सही उत्तर: In-memory, distributed cache
व्याख्या: Multiple caching strategies होते हैं।
Correct Answer: In-memory, distributed
Explanation: Multiple cache types.
136. Distributed Cache का use क्या है?
[A] Multiple servers में cache share करना
[B] Database delete करना
[C] File upload करना
[D] UI render करना
136. What is distributed cache used for?
[A] Share cache across servers
[B] Delete database
[C] Upload file
[D] Render UI
सही उत्तर: Multiple servers में cache share करना
व्याख्या: Scalable systems में use होता है।
Correct Answer: Share cache
Explanation: Used in scalable systems.
137. ASP.NET Core में Caching invalidation क्या है?
[A] Cache data remove करना
[B] Database delete करना
[C] File upload करना
[D] UI render करना
137. What is cache invalidation?
[A] Remove cache data
[B] Delete database
[C] Upload file
[D] Render UI
सही उत्तर: Cache data remove करना
व्याख्या: Old cache refresh करता है।
Correct Answer: Remove cache data
Explanation: Refreshes cached data.
138. API Gateway का main purpose क्या है?
[A] Single entry point for APIs
[B] Database system
[C] File system
[D] UI system
138. What is API Gateway purpose?
[A] Single API entry
[B] Database system
[C] File system
[D] UI system
सही उत्तर: Single entry point for APIs
व्याख्या: Requests route करता है microservices में।
Correct Answer: Single API entry
Explanation: Routes microservices requests.
139. ASP.NET Core में logging provider का example क्या है?
[A] Console, File, Debug
[B] Only DB
[C] Only UI
[D] Only API
139. Example of logging provider?
[A] Console, File, Debug
[B] DB only
[C] UI only
[D] API only
सही उत्तर: Console, File, Debug
व्याख्या: Multiple logging options होते हैं।
Correct Answer: Console, File, Debug
Explanation: Different logging providers.
140. Performance tuning में सबसे important factor क्या है?
[A] Caching & optimization
[B] Database delete
[C] File upload
[D] UI design
140. Most important in performance tuning?
[A] Caching optimization
[B] Delete database
[C] Upload file
[D] Design UI
सही उत्तर: Caching & optimization
व्याख्या: System speed improve करता है।
Correct Answer: Caching optimization
Explanation: Improves system speed.