Quiz-1

Q 1. which of the following file is not generated by C compiler when a program xyz.c  is compiled? / जब कोई प्रोग्राम xyz.c कंपाइल किया जाता है, तो निम्न में से कौन सी फ़ाइल C कंपाइलर द्वारा जनरेट नहीं की जाती है? (RPSC ACP programmer 2011)

  1. xyz.bid
  2. xyz. bak
  3. xyz. obj
  4. xyz. exe

Q 2. What is the means of expended source code? विस्तारित स्रोत कोड का क्या अर्थ है?

  1. Include header file and there library functions
  2. Include data type and there library functions
  3. Include array with union and there library functions
  4. None of these

Q 3. Match the following ? / निम्नलिखित को मिलाएं ?
Phase               Extension 
A. Preprocessor   1- .exe
B. Compiler          2- .i
C. Assembler       3- .obj
D. Linker              4- .s

  1. A=1, B=3, C=2, D=4
  2. A=2, B=4, C=3, D=1
  3. A=2, B=1, C=3, D=4
  4. A=4, B=2, C=3, D=1

Q 4. Which compilation process remove comments in C language? / कौन सी संकलन प्रक्रिया C भाषा में टिप्पणियों को हटाती है?

  1. Assembler
  2. Compiler
  3. Linker
  4. Pre-processor

Q 5. Executable code is the output of which compilation process C program. / निष्पादन योग्य कोड किस संकलन प्रक्रिया C प्रोग्राम का आउटपुट है

  1. Linker
  2. Compiler
  3. Assembler
  4. None of these

Q 6. Which of the following is correct sequence of file execution of source code to executable code? / निम्नलिखित में से कौन सा निष्पादन योग्य कोड के लिए स्रोत कोड के फ़ाइल निष्पादन का सही क्रम है.
Example:- hello.c program

  1. hello.i→ hello.s → hello.o → hello.exe
  2. hello.i→ hello.m → hello.obj→ hello.exe
  3. hello.i→ hello.c → hello.obj→ hello.exe
  4. hello.i→ hello.s → hello.obj→ hello.exe

Q 7. What is the output file generated aften processing .c file? / अक्सर .C फ़ाइल को संसाधित करने वाली उत्पन्न आउटपुट फ़ाइल क्या होती है?

  1. .c file
  2. .b file
  3. .exe file
  4. .obj file

Q 8. The program that converts a high-level language program into a set of instructions that can be run on a computer is called./वह प्रोग्राम जो उच्च स्तरीय भाषा के प्रोग्राम को ऐसे निर्देशों के समूह में परिवर्तित करता है, जिसे कम्प्यूटर पर रन किया जा सके, कहलाता है।

  1. Compiler
  2. Assembler
  3. Editor
  4. Debugger

Q 9. Expanded Source code is the output of which C program building process.?
एक्सपेंडेड सोर्स कोड किस सी प्रोग्राम निर्माण प्रक्रिया का आउटपुट है

  1. Preprocessor
  2. Assembler
  3. Linker
  4. Compiler

Q 10. Which of the following are C preprocessors? / निम्नलिखित में से कौन सी प्रीप्रोसेसर हैं?

  1. #ifdef
  2. #define
  3. #endif
  4. all of the mentioned