C Programming
Questions No: 1/50

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

Questions No: 2/50

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

Questions No: 3/50

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

Questions No: 4/50

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

Questions No: 5/50

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

Questions No: 6/50

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

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

Questions No: 7/50

The keyword break cannot be simply used within
कीवर्ड ब्रेक का उपयोग केवल भीतर नहीं किया जा सकता है

Questions No: 8/50

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

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

Questions No: 9/50

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

Questions No: 10/50

Which of the following keywords is used to return a value from a function?

Questions No: 11/50

Precedence is used
वरीयता का उपयोग किया जाता है

Questions No: 12/50

Which function is used to close a file?

Questions No: 13/50

Which of the following software translates source code into object code?
निम्न में से कौन सा सॉफ़्टवेयर स्रोत कोड को ऑब्जेक्ट कोड में अनुवादित करता है?

Questions No: 14/50

Which library function is used to find the length of a string in C?
C में स्ट्रिंग की लंबाई ज्ञात करने के लिए किस लाइब्रेरी फ़ंक्शन का उपयोग किया जाता है?

Questions No: 15/50

What is the output of the following code?

main()
{
int a, b; a=b=4;
b=a++;
printf("%d %d %d %d", a++, --b, ++a, b--);
}

Questions No: 16/50

If a is an integer variable, then a = 5/2 will return a value
यदि a एक integer variable है, तो a = 5/2 मान लौटाएगा

Questions No: 17/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: 18/50

Which function in C is used to dynamically allocate memory?

Questions No: 19/50

Which of the following loops in C is guaranteed to execute at least once?

Questions No: 20/50

What is the difference between a declaration and a definition of a variable?
variable के declaration और definition के बीच अंतर क्या है?

Questions No: 21/50

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

Questions No: 22/50

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

Questions No: 23/50

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

Questions No: 24/50

a C variable cannot start with
C variable किसके के साथ शुरू नहीं हो सकता

Questions No: 25/50

Which of the following function declaration need not have a return statement in its body?

Questions No: 26/50

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

Questions No: 27/50

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

Questions No: 28/50

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

Questions No: 29/50

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

Questions No: 30/50

Which of the following is a valid string constant?
निम्नलिखित में से कौन एक वैध string constant है?

Questions No: 31/50

What will be the output of the following code?

int main()
{
int x,y,z;
x='1'-'0';    /* line-1 */
y='a'-'b';    /* line-2 */
z=x+y;
printf("%d",z);
}

Questions No: 32/50

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

Questions No: 33/50

printf (%d, printf (infomax));

Questions No: 34/50

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

Questions No: 35/50

How are String represented in memory in C?

Questions No: 36/50

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

Questions No: 37/50

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

Questions No: 38/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: 39/50

Which of the following is true about interpreters?

Questions No: 40/50

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

Questions No: 41/50

Which of the following is not a keyword in C?

Questions No: 42/50

What is required in each C program?

Questions No: 43/50

How many times will the following loop execute?

int j;
for(j = 1; j <= 10; j = j-1)
printf("INFOMAX");

Questions No: 44/50

Which of the following is the correct way to initialize a string in C?

Questions No: 45/50

What will the following code print?

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

Questions No: 46/50

The do…while looping statement

Questions No: 47/50

Which is correct with respect to the size of the data types?
डेटा प्रकारों के आकार के संबंध में कौन सा सही है?

Questions No: 48/50

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

Questions No: 49/50

How many bytes does the int data type usually occupy in C?
C में int डेटा प्रकार आमतौर पर कितने बाइट्स लेता है?

Questions No: 50/50

In the passage of text, individual words and punctuation marks are known as
पाठ के मार्ग में, व्यक्तिगत शब्द और विराम चिह्न के रूप में जाना जाता है