[ DOT NET Core MCQS ]
झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।
[ DOT NET Core MCQS ]
Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
721. TakeWhile() Method का उपयोग किसलिए होता है?
[A] Condition True रहने तक Records Return करने के लिए
[B] Records Delete करने के लिए
[C] Records Sort करने के लिए
[D] Records Count करने के लिए
721. What is TakeWhile() used for?
[A] Return Records While Condition Is True
[B] Delete Records
[C] Sort Records
[D] Count Records
सही उत्तर: Condition True रहने तक Records Return करने के लिए
व्याख्या: Condition False होते ही रुक जाती है।
Correct Answer: Return Records While Condition Is True
Explanation: Stops when condition becomes false.
722. Sum() Method क्या Return करती है?
[A] Total Sum
[B] Average
[C] Maximum
[D] Minimum
722. What does Sum() return?
[A] Total Sum
[B] Average
[C] Maximum
[D] Minimum
सही उत्तर: Total Sum
व्याख्या: Numeric Values का योग Return करती है।
Correct Answer: Total Sum
Explanation: Returns the sum of numeric values.
723. Average() Method का उपयोग किसलिए होता है?
[A] Average Value निकालने के लिए
[B] Maximum Value के लिए
[C] Minimum Value के लिए
[D] Count के लिए
723. What is Average() used for?
[A] Calculate Average Value
[B] Maximum Value
[C] Minimum Value
[D] Count
सही उत्तर: Average Value निकालने के लिए
व्याख्या: Collection का औसत Return करती है।
Correct Answer: Calculate Average Value
Explanation: Returns average of collection values.
724. Max() Method का उपयोग किसलिए होता है?
[A] Maximum Value प्राप्त करने के लिए
[B] Minimum Value प्राप्त करने के लिए
[C] Count प्राप्त करने के लिए
[D] Group बनाने के लिए
724. What is Max() used for?
[A] Get Maximum Value
[B] Get Minimum Value
[C] Get Count
[D] Create Group
सही उत्तर: Maximum Value प्राप्त करने के लिए
व्याख्या: सबसे बड़ी Value Return करती है।
Correct Answer: Get Maximum Value
Explanation: Returns the largest value.
725. Aggregate() Method का मुख्य उद्देश्य क्या है?
[A] Custom Aggregation
[B] Sorting
[C] Filtering
[D] Joining
725. What is the main purpose of Aggregate()?
[A] Custom Aggregation
[B] Sorting
[C] Filtering
[D] Joining
सही उत्तर: Custom Aggregation
व्याख्या: Custom Logic द्वारा Single Result Generate करती है।
Correct Answer: Custom Aggregation
Explanation: Produces a single result using custom logic.
726. ThenByDescending() Method क्या करती है?
[A] Secondary Descending Sort
[B] Primary Descending Sort
[C] Filtering
[D] Grouping
726. What does ThenByDescending() do?
[A] Secondary Descending Sort
[B] Primary Descending Sort
[C] Filtering
[D] Grouping
सही उत्तर: Secondary Descending Sort
व्याख्या: Multiple Sorting Levels के लिए उपयोगी है।
Correct Answer: Secondary Descending Sort
Explanation: Useful for multi-level sorting.
727. Union() Method का उपयोग किसलिए होता है?
[A] Two Collections Merge करके Unique Records Return करना
[B] Only Common Records Return करना
[C] Records Delete करना
[D] Records Sort करना
727. What is Union() used for?
[A] Merge Collections and Return Unique Records
[B] Return Common Records
[C] Delete Records
[D] Sort Records
सही उत्तर: Two Collections Merge करके Unique Records Return करना
व्याख्या: Duplicate Values Remove कर देती है।
Correct Answer: Merge Collections and Return Unique Records
Explanation: Removes duplicate values.
728. Intersect() Method क्या Return करती है?
[A] Common Records
[B] Unique Records
[C] Different Records
[D] Sorted Records
728. What does Intersect() return?
[A] Common Records
[B] Unique Records
[C] Different Records
[D] Sorted Records
सही उत्तर: Common Records
व्याख्या: दो Collections के Common Elements Return करती है।
Correct Answer: Common Records
Explanation: Returns common elements from two collections.
729. Except() Method का उपयोग किसलिए किया जाता है?
[A] Different Records Return करने के लिए
[B] Common Records Return करने के लिए
[C] All Records Return करने के लिए
[D] Records Count करने के लिए
729. What is Except() used for?
[A] Return Different Records
[B] Return Common Records
[C] Return All Records
[D] Count Records
सही उत्तर: Different Records Return करने के लिए
व्याख्या: पहली Collection के वे Records जो दूसरी में नहीं हैं।
Correct Answer: Return Different Records
Explanation: Returns elements in first collection not in second.
730. Concat() Method क्या करती है?
[A] Two Collections Combine करती है
[B] Records Delete करती है
[C] Records Group करती है
[D] Records Filter करती है
730. What does Concat() do?
[A] Combines Two Collections
[B] Deletes Records
[C] Groups Records
[D] Filters Records
सही उत्तर: Two Collections Combine करती है
व्याख्या: Duplicates Remove नहीं करती।
Correct Answer: Combines Two Collections
Explanation: Does not remove duplicates.