[C-Sharp Programming MCQS ]
झारखंड में आयोजित होने वाली JPSC, JSSC, JET, झारखंड पुलिस भर्ती परीक्षा आदि के लिए उपयोगी सामान्य अध्ययन।
[ C-Sharp Programming MCQS ]
Useful GK for JPSC, JSSC, JET, Jharkhand Police and other exams.
161. ASP.NET Core में JWT का पूरा नाम क्या है?
[A] Java Web Token
[B] JSON Web Token
[C] JavaScript Web Token
[D] JSON Window Token
161. What is the full form of JWT in ASP.NET Core?
[A] Java Web Token
[B] JSON Web Token
[C] JavaScript Web Token
[D] JSON Window Token
सही उत्तर: JSON Web Token
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: JSON Web Token
Explanation: Important question.
162. JWT Token मुख्य रूप से किस कार्य के लिए उपयोग किया जाता है?
[A] Database Backup
[B] Authentication और Authorization
[C] Image Processing
[D] File Compression
162. What is the primary purpose of JWT Token?
[A] Database Backup
[B] Authentication and Authorization
[C] Image Processing
[D] File Compression
सही उत्तर: Authentication और Authorization
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Authentication and Authorization
Explanation: Important question.
163. ASP.NET Core Identity का मुख्य उद्देश्य क्या है?
[A] Graphics बनाना
[B] User Authentication एवं Management
[C] File Upload
[D] Memory Management
163. What is the main purpose of ASP.NET Core Identity?
[A] Graphics Rendering
[B] User Authentication and Management
[C] File Upload
[D] Memory Management
सही उत्तर: User Authentication एवं Management
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: User Authentication and Management
Explanation: Important question.
164. Authentication का मुख्य उद्देश्य क्या है?
[A] User की पहचान सत्यापित करना
[B] User को Permission देना
[C] Database बनाना
[D] Session Delete करना
164. What is the main purpose of Authentication?
[A] Verify user identity
[B] Grant permissions
[C] Create database
[D] Delete session
सही उत्तर: User की पहचान सत्यापित करना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Verify user identity
Explanation: Important question.
165. Authorization का मुख्य उद्देश्य क्या है?
[A] User Login कराना
[B] User को Resource Access की अनुमति देना
[C] Password Encrypt करना
[D] Cookie बनाना
165. What is the main purpose of Authorization?
[A] Log in the user
[B] Grant access to resources
[C] Encrypt password
[D] Create cookies
सही उत्तर: User को Resource Access की अनुमति देना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Grant access to resources
Explanation: Important question.
166. ASP.NET Core में Session का उपयोग किसलिए किया जाता है?
[A] Permanent Data Store करने के लिए
[B] User Specific Temporary Data Store करने के लिए
[C] Application Compile करने के लिए
[D] Database Create करने के लिए
166. Why is Session used in ASP.NET Core?
[A] To store permanent data
[B] To store user-specific temporary data
[C] To compile application
[D] To create database
सही उत्तर: User Specific Temporary Data Store करने के लिए
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: To store user-specific temporary data
Explanation: Important question.
167. Cookie और Session में मुख्य अंतर क्या है?
[A] दोनों Server पर Store होते हैं
[B] Cookie Client पर तथा Session Server पर Store होता है
[C] दोनों Client पर Store होते हैं
[D] कोई अंतर नहीं
167. What is the main difference between Cookie and Session?
[A] Both are stored on the server
[B] Cookie is stored on the client and Session on the server
[C] Both are stored on the client
[D] There is no difference
सही उत्तर: Cookie Client पर तथा Session Server पर Store होता है
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Cookie is stored on the client and Session on the server
Explanation: Important question.
168. CORS का पूरा नाम क्या है?
[A] Common Origin Resource Sharing
[B] Cross Origin Resource Sharing
[C] Cross Object Resource Service
[D] Core Origin Resource Sharing
168. What is the full form of CORS?
[A] Common Origin Resource Sharing
[B] Cross Origin Resource Sharing
[C] Cross Object Resource Service
[D] Core Origin Resource Sharing
सही उत्तर: Cross Origin Resource Sharing
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Cross Origin Resource Sharing
Explanation: Important question.
169. ASP.NET Core में Model Validation के लिए सामान्यतः कौन-से Attribute का उपयोग किया जाता है?
[A] [Validate]
[B] [Required]
[C] [Check]
[D] [Verify]
169. Which attribute is commonly used for Model Validation in ASP.NET Core?
[A] [Validate]
[B] [Required]
[C] [Check]
[D] [Verify]
सही उत्तर: [Required]
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: [Required]
Explanation: Important question.
170. ASP.NET Core में Action Filter का मुख्य उद्देश्य क्या है?
[A] Database Create करना
[B] Action Execution से पहले या बाद में Logic Execute करना
[C] Application Compile करना
[D] Memory Allocate करना
170. What is the main purpose of an Action Filter in ASP.NET Core?
[A] Create database
[B] Execute logic before or after an action
[C] Compile application
[D] Allocate memory
सही उत्तर: Action Execution से पहले या बाद में Logic Execute करना
व्याख्या: महत्वपूर्ण प्रश्न।
Correct Answer: Execute logic before or after an action
Explanation: Important question.