[ DOT NET Core MCQS ]
झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।
[ DOT NET Core MCQS ]
Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
281. Microservices का मुख्य लाभ क्या है?
[A] Independent Deployment
[B] Single Database Only
[C] No Scalability
[D] Large Monolith
281. What is a key benefit of Microservices?
[A] Independent Deployment
[B] Single Database Only
[C] No Scalability
[D] Large Monolith
सही उत्तर: Independent Deployment
व्याख्या: प्रत्येक Service को स्वतंत्र रूप से Deploy किया जा सकता है।
Correct Answer: Independent Deployment
Explanation: Each service can be deployed independently.
282. Monolithic Architecture में Application कैसी होती है?
[A] Single Unit
[B] Multiple Independent Services
[C] Only Database
[D] Only APIs
282. In Monolithic Architecture, an application is?
[A] Single Unit
[B] Multiple Independent Services
[C] Only Database
[D] Only APIs
सही उत्तर: Single Unit
व्याख्या: Monolithic Application एक ही Deployable Unit होती है।
Correct Answer: Single Unit
Explanation: A monolithic application is a single deployable unit.
283. DDD का पूरा नाम क्या है?
[A] Domain Driven Design
[B] Data Driven Design
[C] Distributed Data Design
[D] Domain Data Development
283. What does DDD stand for?
[A] Domain Driven Design
[B] Data Driven Design
[C] Distributed Data Design
[D] Domain Data Development
सही उत्तर: Domain Driven Design
व्याख्या: DDD Business Domain पर केंद्रित Software Design Approach है।
Correct Answer: Domain Driven Design
Explanation: DDD focuses on business domains.
284. DDD में Bounded Context क्या है?
[A] Logical Boundary of Domain Model
[B] Database Table
[C] API Endpoint
[D] Namespace
284. What is a Bounded Context in DDD?
[A] Logical Boundary of Domain Model
[B] Database Table
[C] API Endpoint
[D] Namespace
सही उत्तर: Logical Boundary of Domain Model
व्याख्या: Bounded Context Domain Model की सीमाएँ निर्धारित करता है।
Correct Answer: Logical Boundary of Domain Model
Explanation: It defines the boundary of a domain model.
285. Event Driven Architecture में Communication किसके द्वारा होती है?
[A] Events
[B] Tables
[C] Files
[D] Controllers
285. How do components communicate in Event Driven Architecture?
[A] Events
[B] Tables
[C] Files
[D] Controllers
सही उत्तर: Events
व्याख्या: Services Events Publish और Subscribe करती हैं।
Correct Answer: Events
Explanation: Services communicate through events.
286. Event Publisher क्या करता है?
[A] Event Generate करता है
[B] Database Create करता है
[C] Cache Clear करता है
[D] Routing करता है
286. What does an Event Publisher do?
[A] Generates Events
[B] Creates Database
[C] Clears Cache
[D] Handles Routing
सही उत्तर: Event Generate करता है
व्याख्या: Publisher Event को Message Broker में भेजता है।
Correct Answer: Generates Events
Explanation: The publisher sends events to a broker.
287. Event Subscriber क्या करता है?
[A] Event Consume करता है
[B] Database Delete करता है
[C] Application Compile करता है
[D] UI Render करता है
287. What does an Event Subscriber do?
[A] Consumes Events
[B] Deletes Database
[C] Compiles Application
[D] Renders UI
सही उत्तर: Event Consume करता है
व्याख्या: Subscriber Published Events को Process करता है।
Correct Answer: Consumes Events
Explanation: Subscribers process published events.
288. CAP Theorem में C का अर्थ क्या है?
[A] Consistency
[B] Caching
[C] Control
[D] Communication
288. What does C stand for in CAP Theorem?
[A] Consistency
[B] Caching
[C] Control
[D] Communication
सही उत्तर: Consistency
व्याख्या: सभी Nodes पर समान Data उपलब्ध होना।
Correct Answer: Consistency
Explanation: All nodes see the same data.
289. CAP Theorem में A का अर्थ क्या है?
[A] Availability
[B] Authentication
[C] Access
[D] Aggregation
289. What does A stand for in CAP Theorem?
[A] Availability
[B] Authentication
[C] Access
[D] Aggregation
सही उत्तर: Availability
व्याख्या: System हमेशा Response दे सके।
Correct Answer: Availability
Explanation: The system remains available.
290. CAP Theorem में P का अर्थ क्या है?
[A] Partition Tolerance
[B] Performance
[C] Processing
[D] Protection
290. What does P stand for in CAP Theorem?
[A] Partition Tolerance
[B] Performance
[C] Processing
[D] Protection
सही उत्तर: Partition Tolerance
व्याख्या: Network Failure होने पर भी System कार्य करे।
Correct Answer: Partition Tolerance
Explanation: The system tolerates network partitions.