BCA
Questions No: 1/50

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

Questions No: 2/50

What does fseek() do?

Questions No: 3/50

If i = 8 and j = 5 are two integers, then the value of a=(i>0) || (j < 5) ; is

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

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

Questions No: 6/50

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

Questions No: 7/50

What is the output of the following code?

int a = 5;
printf("%d", a == 5);

Questions No: 8/50

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

Questions No: 9/50

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

Questions No: 10/50

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

Questions No: 11/50

Which sentence contains a complex sentence? 

Questions No: 12/50

How are String represented in memory in C?

Questions No: 13/50

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

Questions No: 14/50

 Which of the following is an imperative sentence?

Questions No: 15/50

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

Questions No: 16/50

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

Questions No: 17/50

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

Questions No: 18/50

Standard ANSI C recognizes ______ number of keywords?
मानक ANSI C, कीवर्ड की ______ संख्या को पहचानता है?

Questions No: 19/50

The following code ‘for(;;)’ represents an infinite loop. It can be terminated by.
निम्नलिखित कोड for(;;) के लिए अनंत लूप का प्रतिनिधित्व करता है। द्वारा इसे समाप्त किया जा सकता है।

Questions No: 20/50

Which of the following is not a correct data type in C
निम्नलिखित में से कौन सही डेटा प्रकार नहीं है?

Questions No: 21/50

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

Questions No: 22/50

What will be the output of following program?

int main() 
{
  for(int c=1;c<5;++c); 
printf(“%d”,c); 
}

Questions No: 23/50

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

Questions No: 24/50

What is the output of the following code?

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

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

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

Questions No: 27/50

What is the correct value to return to the operating system upon the successful completion of a program?
किसी प्रोग्राम के सफल समापन पर ऑपरेटिंग सिस्टम पर लौटने का सही मूल्य क्या है?

Questions No: 28/50

Which of these phrases has the adjective placed correctly? 

Questions No: 29/50

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

Questions No: 30/50

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

Questions No: 31/50

What is the output of this statement

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

Questions No: 32/50

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

Questions No: 33/50

in C language How will you print '\n' on the screen?
आप स्क्रीन पर '\ n' कैसे प्रिंट करेंगे?

Questions No: 34/50

Complete the sentence using past continuous tense: "I __________ my homework at 7 o'clock yesterday."

Questions No: 35/50

Which of the following is an incorrect assignment statement ?
निम्नलिखित में से कौन एक गलत असाइनमेंट स्टेटमेंट है?

Questions No: 36/50

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

Questions No: 37/50

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

Questions No: 38/50

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

Questions No: 39/50

What will be output if you compile and execute the following ‘C’ code?

void main()
{
int i=4,x;
x=++i + ++i + ++i;
printf("%d",x);
}

Questions No: 40/50

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

Questions No: 41/50

Which header file is necessary for using the malloc function?

Questions No: 42/50

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

Questions No: 43/50

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

Questions No: 44/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: 45/50

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

Questions No: 46/50

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

Questions No: 47/50

Which of the following is not a keyword in C?

Questions No: 48/50

Which of the following is not a type of file access permission?

Questions No: 49/50

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

Questions No: 50/50

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

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