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)
- xyz.bid
- xyz. bak
- xyz. obj
- xyz. exe
Q 2. What is the means of expended source code? विस्तारित स्रोत कोड का क्या अर्थ है?
- Include header file and there library functions
- Include data type and there library functions
- Include array with union and there library functions
- 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
- A=1, B=3, C=2, D=4
- A=2, B=4, C=3, D=1
- A=2, B=1, C=3, D=4
- A=4, B=2, C=3, D=1
Q 4. Which compilation process remove comments in C language? / कौन सी संकलन प्रक्रिया C भाषा में टिप्पणियों को हटाती है?
- Assembler
- Compiler
- Linker
- Pre-processor
Q 5. Executable code is the output of which compilation process C program. / निष्पादन योग्य कोड किस संकलन प्रक्रिया C प्रोग्राम का आउटपुट है
- Linker
- Compiler
- Assembler
- 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
- hello.i→ hello.s → hello.o → hello.exe
- hello.i→ hello.m → hello.obj→ hello.exe
- hello.i→ hello.c → hello.obj→ hello.exe
- hello.i→ hello.s → hello.obj→ hello.exe
Q 7. What is the output file generated aften processing .c file? / अक्सर .C फ़ाइल को संसाधित करने वाली उत्पन्न आउटपुट फ़ाइल क्या होती है?
- .c file
- .b file
- .exe file
- .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./वह प्रोग्राम जो उच्च स्तरीय भाषा के प्रोग्राम को ऐसे निर्देशों के समूह में परिवर्तित करता है, जिसे कम्प्यूटर पर रन किया जा सके, कहलाता है।
- Compiler
- Assembler
- Editor
- Debugger
Q 9.
Expanded Source code is the output of which C program building process.?
एक्सपेंडेड सोर्स कोड किस सी प्रोग्राम निर्माण प्रक्रिया का आउटपुट है
- Preprocessor
- Assembler
- Linker
- Compiler
Q 10. Which of the following are C preprocessors? / निम्नलिखित में से कौन सी प्रीप्रोसेसर हैं?
- #ifdef
- #define
- #endif
- all of the mentioned