[C-Sharp Programming MCQS ]

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

[ C-Sharp Programming MCQS ]

Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
81. C# में नया Thread बनाने के लिए कौन-सा Namespace उपयोग किया जाता है?
[A] System.IO
[B] System.Threading
[C] System.Net
[D] System.Data
81. Which namespace is used to create a new thread in C#?
[A] System.IO
[B] System.Threading
[C] System.Net
[D] System.Data
सही उत्तर: System.Threading
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: System.Threading
Explanation: Important question.
82. C# में Task Class किस Namespace में उपलब्ध है?
[A] System.IO
[B] System.Threading.Tasks
[C] System.Text
[D] System.Net
82. The Task class belongs to which namespace in C#?
[A] System.IO
[B] System.Threading.Tasks
[C] System.Text
[D] System.Net
सही उत्तर: System.Threading.Tasks
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: System.Threading.Tasks
Explanation: Important question.
83. C# में Parallel Programming का मुख्य उद्देश्य क्या है?
[A] Memory कम करना
[B] एक साथ कई कार्यों का निष्पादन
[C] Code छोटा करना
[D] Database बनाना
83. What is the main purpose of Parallel Programming in C#?
[A] Reduce memory
[B] Execute multiple tasks simultaneously
[C] Reduce code size
[D] Create databases
सही उत्तर: एक साथ कई कार्यों का निष्पादन
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Execute multiple tasks simultaneously
Explanation: Important question.
84. C# में Serialization का उद्देश्य क्या है?
[A] Object को Byte Stream में बदलना
[B] Array बनाना
[C] Loop चलाना
[D] Memory Delete करना
84. What is the purpose of Serialization in C#?
[A] Convert an object into a byte stream
[B] Create arrays
[C] Execute loops
[D] Delete memory
सही उत्तर: Object को Byte Stream में बदलना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Convert an object into a byte stream
Explanation: Important question.
85. C# में Deserialization का अर्थ क्या है?
[A] Byte Stream को Object में बदलना
[B] Object Delete करना
[C] File Delete करना
[D] Memory Allocate करना
85. What is Deserialization in C#?
[A] Convert a byte stream back into an object
[B] Delete an object
[C] Delete a file
[D] Allocate memory
सही उत्तर: Byte Stream को Object में बदलना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Convert a byte stream back into an object
Explanation: Important question.
86. C# में IDisposable Interface का मुख्य उद्देश्य क्या है?
[A] Loop बनाना
[B] Resource Release करना
[C] Class बनाना
[D] Object Copy करना
86. What is the main purpose of IDisposable interface in C#?
[A] Create loops
[B] Release resources
[C] Create classes
[D] Copy objects
सही उत्तर: Resource Release करना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Release resources
Explanation: Important question.
87. C# में Dispose() Method किस Interface का भाग है?
[A] ICloneable
[B] IDisposable
[C] IComparable
[D] IEnumerable
87. Dispose() method belongs to which interface in C#?
[A] ICloneable
[B] IDisposable
[C] IComparable
[D] IEnumerable
सही उत्तर: IDisposable
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: IDisposable
Explanation: Important question.
88. C# में Func Delegate क्या Return करता है?
[A] कोई Value नहीं
[B] हमेशा Boolean
[C] एक Value Return करता है
[D] केवल Integer Return करता है
88. What does a Func delegate return in C#?
[A] No value
[B] Always Boolean
[C] Returns a value
[D] Returns only Integer
सही उत्तर: एक Value Return करता है
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Returns a value
Explanation: Important question.
89. C# में Action Delegate क्या Return करता है?
[A] String
[B] Integer
[C] Boolean
[D] कोई Value नहीं
89. What does an Action delegate return in C#?
[A] String
[B] Integer
[C] Boolean
[D] No value
सही उत्तर: कोई Value नहीं
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: No value
Explanation: Important question.
90. C# में Predicate Delegate किस प्रकार की Value Return करता है?
[A] Integer
[B] String
[C] Boolean
[D] Double
90. What type of value does a Predicate delegate return in C#?
[A] Integer
[B] String
[C] Boolean
[D] Double
सही उत्तर: Boolean
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Boolean
Explanation: Important question.