C Language
Questions No: 1/50

Function isdigit() is defined in ________ header file.
isdigit() फंक्शन किस हैडर फाइल में डिफाइन है

Questions No: 2/50

C programs are converted into machine language with the help of
C प्रोग्राम को मशीनी भाषा में किसकी मदद परिवर्तित किया जाता है

Questions No: 3/50

What is required in each C program?

Questions No: 4/50

Which of the following is not a keyword in C?

Questions No: 5/50

What will be the output of the following program?

int main() 

int x=5; 
printf(“%d %d %d”,x,x<<2,x>>2); 
}

Questions No: 6/50

What is the purpose of the return statement in a function?

Questions No: 7/50

Which of the following operators in C has the highest precedence?

Questions No: 8/50

The keyword used to transfer control from a function back to the calling function is

Questions No: 9/50

Consider the following code and How many bytes of memory will be allocated?

int *ptr = (int *)
malloc(10 * sizeof(int));

Questions No: 10/50

Which of the following is the correct order of evaluation for the given expression? z = x + y * z / 4 % 2 - 1
निम्न expression के लिए मूल्यांकन का सही क्रम निम्नलिखित में से कौन सा है? z = x + y * z / 4% 2 - 1

Questions No: 11/50

What is the final value of x when the code is executed?

int x; 
for(x=0; x<10; x++) 
{} 

Questions No: 12/50

What will be the output of the following code?

int x = 5;
printf("%d", ++x);

Questions No: 13/50

a ‘C’ expression contains relational, assignment and arithmetic operators. There are no parentheses used. They will be evaluated in which of the following order
एक C expression में relational, assignment और arithmetic ऑपरेटर शामिल हैं। उपयोग किए गए कोई कोष्ठक नहीं हैं। उनका मूल्यांकन निम्न में से किस क्रम में किया जाएगा

Questions No: 14/50

How would you round off a value from 1.66 to 2.0?
आप १.६६ से २.० के बीच के मूल्य को कैसे समाप्त करेंगे?

Questions No: 15/50

________ is used to transfer control from a function back to the calling function.
_________ एक फ़ंक्शन से कॉलिंग फ़ंक्शन पर नियंत्रण स्थानांतरित करने के लिए उपयोग किया जाता है

Questions No: 16/50

What happens if you use a break statement inside a nested loop?

Questions No: 17/50

which Input function does not show the character read from the input device
कौन सा इनपुट फ़ंक्शन इनपुट डिवाइस से पढ़ा गया चरित्र नहीं दिखाता है

Questions No: 18/50

What is the output of the following code?

int x = 5;
if (x > 3) {
 printf("Greater than 3");
 } else {
 printf("Not greater than 3");
 }

Questions No: 19/50

Which of the following cannot be a variable name in C?
निम्नलिखित में से कौन सी में एक variable नाम नहीं हो सकता है?

Questions No: 20/50

What does fseek() do?

Questions No: 21/50

Which is valid C expression?
कौन सी मान्य C expression है?

Questions No: 22/50

Which programming method is followed in C language
C भाषा में किस प्रोग्रामिंग विधि का पालन किया जाता है

Questions No: 23/50

What is the result of the following code: int a = 10, b = 20; printf("%d", a > b ? a : b);

Questions No: 24/50

Which of following is not a valid name for a C variable?
निम्नलिखित में से कौन नाम variable के लिए मान्य नाम नहीं है?

Questions No: 25/50

What will be output if you will compile and execute the following c code?

int main()

int a=5; 
float b;
printf("%d",sizeof(++a+b));
printf(" %d",a); return 0;
}

Questions No: 26/50

Which of the following is not logical operator?
निम्नलिखित में से कौन तार्किक ऑपरेटर नहीं है?

Questions No: 27/50

Identify the correct sequence of steps to run a c program
सी प्रोग्राम चलाने के लिए चरणों के सही अनुक्रम को पहचानें

Questions No: 28/50

Which of the following is false in ‘C’ Programming Language
निम्नलिखित में से कौन सी ’C’ प्रोग्रामिंग भाषा में गलत है

Questions No: 29/50

Which control statement allows you to skip the remaining code inside a loop for the current iteration and proceed to the next iteration?

Questions No: 30/50

Which of the following is true for variable names in C?
C में variable नामों में से कौन सा सही है?

Questions No: 31/50

What will be the output of the following C code? printf("%d", sizeof(char));

Questions No: 32/50

The format identifier ‘%i’ is also used for _____ data type.
प्रारूप पहचानकर्ता % i ’का उपयोग _____ डेटा प्रकार के लिए भी किया जाता है।

Questions No: 33/50

Which one is incorrect statement for C Language?
C भाषा के लिए कौन सा गलत कथन है?

Questions No: 34/50

What is the purpose of the sizeof operator in C?

Questions No: 35/50

Which of the following correctly accesses the fifth element of an array arr?

Questions No: 36/50

Who is father of C Language?
C लैंग्वेज का जनक कौन है?

Questions No: 37/50

Which of the following is the correct way to pass a pointer to a function?

Questions No: 38/50

Which keyword is used to come out of a loop only for that iteration?
उस पुनरावृत्ति के लिए केवल लूप से बाहर आने के लिए किस कीवर्ड का उपयोग किया जाता है?

Questions No: 39/50

C Programming Language was developed and written by
C प्रोग्रामिंग लैंग्वेज का विकास और लेखन द्वारा किया गया

Questions No: 40/50

What is the correct syntax to output "Hello World" in C?

Questions No: 41/50

In C, which function is used to obtain user input?

Questions No: 42/50

Which is invalid name of identifier?
identifier का अमान्य नाम कौन सा है?

Questions No: 43/50

What is the output of the following code: int x = 5; printf("%d", x++);

Questions No: 44/50

Which mode is used to open a file for reading in C?

Questions No: 45/50

Which of the following is the correct syntax for a for loop in C?

Questions No: 46/50

Which of the following is a correct way to declare an integer variable in C?

Questions No: 47/50

Which is an incorrect variable name?
एक गलत variable नाम कौन सा है?

Questions No: 48/50

The name of all functions end with a
The name of all functions end with a

Questions No: 49/50

Arguments that take input by user before running a program are called?
प्रोग्राम चलाने से पहले उपयोगकर्ता द्वारा इनपुट लेने वाले तर्क किसे कहा जाता है?

Questions No: 50/50

Which of the following cannot be used in identifiers?
निम्नलिखित में से कौन identifiers में इस्तेमाल नहीं किया जा सकता है?