C Introduction"A4" 1 / 50 C भाषा का विकास किस वर्ष हुआ? 1965 1972 1980 1995 2 / 50 C भाषा को किस लैब में विकसित किया गया? IBM Microsoft Bell Labs Google 3 / 50 C किस प्रकार की भाषा है? High Level Low Level Middle Level Machine Level 4 / 50 C भाषा मुख्य रूप से किसके लिए बनाई गई थी? Mobile App UNIX OS Web Development Game Development 5 / 50 C भाषा Case Sensitive होती है या नहीं? नहीं हाँ कभी-कभी निर्भर करता है 6 / 50 C प्रोग्राम का प्रारंभिक फ़ंक्शन कौन सा है? start() main() begin() init() 7 / 50 C में हर स्टेटमेंट का अंत किससे होता है? : , . ; 8 / 50 C में printf() किसके लिए प्रयोग होता है? Output Calculation Loop Input 9 / 50 scanf() का उपयोग किस लिए होता है? Output Input Loop Function 10 / 50 C भाषा में Comment लिखने के कितने तरीके हैं? 1 2 3 4 11 / 50 Single line comment किससे लिखा जाता है? /* */ # // %% 12 / 50 Multi-line comment किससे लिखा जाता है? // <!-- --> C /* */ ## 13 / 50 C में Header file का extension क्या होता है? .c .cpp .h .exe 14 / 50 stdio.h किसके लिए प्रयोग होती है? Math Input/Output String File 15 / 50 C भाषा में Keyword की संख्या कितनी है? 16 24 32 48 16 / 50 Keyword कौन सा है? main printf int sum 17 / 50 Identifier क्या होता है? Variable का नाम Keyword Operator Constant 18 / 50 Variable का सही उदाहरण कौन सा है? 2num int _num #num 19 / 50 C में Variable declare करने का सही तरीका कौन सा है? int a; a int; declare a; int = a; 20 / 50 C में Constant क्या होता है? बदलने वाला मान न बदलने वाला मान Function Variable 21 / 50 C में Data Type कौन सा है? number real int digit 22 / 50 int Data Type कितनी Memory लेता है? 1 byte 2 byte 4 byte System dependent 23 / 50 C में Character Data Type कौन सा है? char string text character 24 / 50 char Data Type कितनी Memory लेता है? 1 byte 2 byte 4 byte 8 byte 25 / 50 C में Float Data Type कितनी Memory लेता है? 2 byte 4 byte 8 byte 16 byte 26 / 50 C में double Data Type कितनी Memory लेता है? 2 byte 4 byte 8 byte 16 byte 27 / 50 C में Operator का उपयोग किस लिए होता है? Input Output Calculation Comment 28 / 50 +, -, , / किस प्रकार के Operator हैं? Logical Relational Arithmetic Assignment 29 / 50 = Operator किस प्रकार का है? Relational Assignment Arithmetic Logical 30 / 50 == Operator किस लिए प्रयोग होता है? Value assign Value compare Increment Decrement 31 / 50 C में Logical Operator कौन सा है? + && = % 32 / 50 C में Loop का उपयोग क्यों होता है? Decision Repetition Input Output 33 / 50 C में Loop कितने प्रकार के होते हैं? 5 3 4 2 34 / 50 for Loop का उपयोग कब किया जाता है? जब iterations ज्ञात हों जब iterations अज्ञात हों Input के लिए Output के लिए 35 / 50 while Loop पहले क्या check करता है? Condition Statement Increment Output 36 / 50 do-while Loop कम से कम कितनी बार चलता है? 0 1 2 Depends 37 / 50 break Statement का उपयोग किस लिए होता है? Loop skip Loop exit Continue loop Restart loop 38 / 50 continue Statement का उपयोग किस लिए होता है? Loop exit Loop stop Next iteration Program stop 39 / 50 C में Array क्या है? Multiple variables Same type का collection Function Pointer 40 / 50 Array index कहाँ से शुरू होता है? 0 1 2 -1 41 / 50 C में String को किससे दर्शाया जाता है? int char array float double 42 / 50 C में Function का उपयोग क्यों होता है? Code repeat Code reuse Code delete Code stop 43 / 50 main() किस प्रकार का Function है? User-defined Library Built-in Special 44 / 50 C में Return Statement का उपयोग किस लिए होता है? Value वापस करने के लिए Loop के लिए Input के लिए Output के लिए 45 / 50 C में Pointer क्या होता है? Variable Function Address store करने वाला variable Loop 46 / 50 & Operator को क्या कहते हैं? AND Address Operator OR NOT 47 / 50 * Operator Pointer में क्या दर्शाता है? Value Address Dereference Multiply 48 / 50 C प्रोग्राम compile करने के बाद कौन सी फाइल बनती है? .c .txt .exe .doc 49 / 50 C भाषा किस प्रकार की Programming Language है? Object Oriented Procedural Functional Scripting 50 / 50 C भाषा का विकास किसने किया था? Dennis Ritchie James Gosling Bjarne Stroustrup Guido van Rossum Your score isThe average score is 0% 0% Restart quiz