BCA
Questions No: 1/50

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

Questions No: 2/50

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

Questions No: 3/50

Which operator is used to access the address of a variable?
किसी वेरिएबल के एड्रेस जानने के लिए किस ऑपरेटर का उपयोग किया जाता है?

Questions No: 4/50

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

Questions No: 5/50

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

Questions No: 6/50

Which of the following loops in C is guaranteed to execute at least once?
C में निम्नलिखित में से कौन सा लूप कम से कम एक बार निष्पादित होने की गारंटी है?

Questions No: 7/50

Which of the following a not a basic data type used in C language?
निम्नलिखित में से कौन C language में प्रयुक्त एक basic data type नहीं है?

Questions No: 8/50

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

Questions No: 9/50

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

Questions No: 10/50

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

Questions No: 11/50

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

Questions No: 12/50

 Which of the following is an imperative sentence?

Questions No: 13/50

What is meant by multiple inheritance?

Questions No: 14/50

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

Questions No: 15/50

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

Questions No: 16/50

In the following nested conditional statements, which branch will execute?

int x = 4;
if (x > 2) {
if (x < 5) {
printf("x is between 2 and 5");
}

else {
printf("x is 2 or less");
}

Questions No: 17/50

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

Questions No: 18/50

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

Questions No: 19/50

C Language developed at _________?
C लैंग्वेज कहा विकसित हुई ?

Questions No: 20/50

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

Questions No: 21/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: 22/50

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

Questions No: 23/50

What are the different types of real data type in C ?
C में विभिन्न प्रकार के real डेटा प्रकार क्या हैं?

Questions No: 24/50

Which function is used to close a file?

Questions No: 25/50

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

Questions No: 26/50

What will the following code print?

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

Questions No: 27/50

Which of the following language is predecessor to C Programming Language?
निम्नलिखित में से कौन सी भाषा C प्रोग्रामिंग लैंग्वेज की पूर्ववर्ती है?

Questions No: 28/50

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

Questions No: 29/50

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

Questions No: 30/50

All keywords in C are in
C में सभी कीवर्ड हैं

Questions No: 31/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: 32/50

Function of a compiler is
कम्पाइलर का कार्य क्या है

Questions No: 33/50

Saloni is taller than her friend Riya. In this sentence, the word ‘taller’ is which degree of adjective?

Questions No: 34/50

What does the word ‘turbulent’ mean?

Questions No: 35/50

Which statement is used to terminate the execution of a loop?

Questions No: 36/50

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

Questions No: 37/50

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

Questions No: 38/50

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

Questions No: 39/50

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

Questions No: 40/50

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

Questions No: 41/50

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

Questions No: 42/50

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

Questions No: 43/50

What is the purpose of the sizeof operator in C?

Questions No: 44/50

Choose the preposition which is used in the idiom: to be  ____ the weather 

Questions No: 45/50

What will be the output of following program?

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

Questions No: 46/50

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

Questions No: 47/50

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

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

Questions No: 48/50

What is the output of this statement

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

Questions No: 49/50

What is the size of an int data type in C?

Questions No: 50/50

Identify the sentence which uses an intransitive verb: