MCA
Questions No: 1/50

The do..while looping statement

Questions No: 2/50

What is the size of an int data type?
int डेटा प्रकार का आकार क्या है?

Questions No: 3/50

For 16 bit compiler allowable range for integer constants is
पूर्णांक स्थिरांक के लिए 16 बिट संकलक स्वीकार्य सीमा है

Questions No: 4/50

What will be the output of the following code?

int a = 10, b = 20;
printf("%d", a + b);

Questions No: 5/50

Zero address instructions are necessarily used in _________ architecture.
ज़ीरो एड्रेस इंस्ट्रक्शन अनिवार्य रूप से _________ आर्किटेक्चर में उपयोग किए जाते हैं।

Questions No: 6/50

if a=8, b=3 and c=-5 are integers, then value of a*b/c is
यदि a = 8, b = 3 और c = -5 integers हैं, तो a * b / c का मान है

Questions No: 7/50

What does fseek() do?

Questions No: 8/50

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

Questions No: 9/50

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

Questions No: 10/50

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

Questions No: 11/50

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

Questions No: 12/50

Which numbering system is not handled directly by the printf() conversion specifies ?

Questions No: 13/50

What is correct order of precedence in C?
C में पूर्वता का सही क्रम क्या है?

Questions No: 14/50

What is the index of the first element in a C array?

Questions No: 15/50

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

Questions No: 16/50

What is the purpose of the #include directive in C?

Questions No: 17/50

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

Questions No: 18/50

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

Questions No: 19/50

Which of the following is not a valid relational operator?
निम्नलिखित में से कौन वैध रिलेशनल ऑपरेटर नहीं है?

Questions No: 20/50

What is the output of the following code?

int arr[5] = {1, 2, 3, 4, 5};
printf("%d", arr[3]);

Questions No: 21/50

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

Questions No: 22/50

What will happen if you try to access an array element out of its bounds in C?

Questions No: 23/50

What is the output of this statement

printf("%d", (a++));

Questions No: 24/50

What will the following code print?

int x = 5;
if (x = 0)
printf("Zero");
else
printf("Not zero");

Questions No: 25/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: 26/50

What is the difference between break and continue statements in loops?

Questions No: 27/50

The conditional operator ( ? : ) is also known as
Conditional operator (? : ) को और किस नाम से जाना जाता है

Questions No: 28/50

The value obtained in the function is given back to main by using ________ keyword.
फ़ंक्शन में प्राप्त मान को ________ कीवर्ड का उपयोग करके मुख्य रूप से वापस दिया जाता है।

Questions No: 29/50

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

Questions No: 30/50

The preprocessor directives start with
प्रीप्रोसेसर निर्देश के साथ शुरू होता है

Questions No: 31/50

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

Questions No: 32/50

Which one of the following are not valid variable names in C?
निम्नलिखित में से कौन C में मान्य variable नाम नहीं हैं?

Questions No: 33/50

Which function is used to read a single character from the user in C?

Questions No: 34/50

What is the output of the following code?

int a = 5, b = 10;
if (a < b)
printf("a is less than b");
else
printf("a is greater than or equal to b");

Questions No: 35/50

If a structure contains another structure as a member, it is called:

Questions No: 36/50

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

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

Questions No: 37/50

An array can be passed to a function by
किसी सरणी को फ़ंक्शन द्वारा पास किया जा सकता है

Questions No: 38/50

By default a real number is treated as a
डिफ़ॉल्ट रूप से एक वास्तविक संख्या को माना जाता है

Questions No: 39/50

Which keyword is used to prevent a variable from being modified?

Questions No: 40/50

In C, if you pass an array as an argument to a function, what actually gets passed?
C में, यदि आप किसी फ़ंक्शन के तर्क के रूप में एक सरणी पास करते हैं, तो वास्तव में क्या पारित होता है?

Questions No: 41/50

Which data type is most suitable for storing a number 65000 in a 32-bit system?
32-बिट सिस्टम में नंबर 65000 को संग्रहीत करने के लिए कौन सा डेटा प्रकार सबसे उपयुक्त है?

Questions No: 42/50

Which of the following is an exit controlled loop?

Questions No: 43/50

The && and | | operators
&& और | | ऑपरेटरों

Questions No: 44/50

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

Questions No: 45/50

Which of the following is a logical operator in C?

Questions No: 46/50

Which of the following is not a keyword in C?

Questions No: 47/50

What is the output of the following code:

int x = 5;

printf("%d", x++);

Questions No: 48/50

pow(x,y) is used to
pow (x, y) का उपयोग किया जाता है

Questions No: 49/50

What is the role of the break statement in a loop?

Questions No: 50/50

What is the purpose of the sizeof operator in C?