BCA
Questions No: 1/50

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

Questions No: 2/50

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

Questions No: 3/50

Which statement is used to skip the current iteration of a loop in C++?

Questions No: 4/50

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

Questions No: 5/50

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

Questions No: 6/50

Which of the following is a main clause?

Questions No: 7/50

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

Questions No: 8/50

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

Questions No: 9/50

Which function in C is used to dynamically allocate memory?

Questions No: 10/50

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

Questions No: 11/50

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

Questions No: 12/50

Which of the following is not a keyword in C?

Questions No: 13/50

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

Questions No: 14/50

What is the output of the following code?

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

Questions No: 15/50

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

Questions No: 16/50

What will the following code print?

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

Questions No: 17/50

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

Questions No: 18/50

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

Questions No: 19/50

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

Questions No: 20/50

Which one of the following is not a keyword in C language?
C भाषा में निम्नलिखित में से कौन सा एक keyword नहीं है?

Questions No: 21/50

Which function is used to close a file?

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

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

Questions No: 25/50

The code of statements which may cause abnormal termination of the program should be written under which block?

Questions No: 26/50

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

Questions No: 27/50

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

Questions No: 28/50

Which is the only C function all programs must contain?
एकमात्र C फ़ंक्शन कौन सा है जिसमें सभी प्रोग्राम होने चाहिए?

Questions No: 29/50

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

Questions No: 30/50

C was primarily developed as
C को मुख्य रूप से किसके लिए विकसित किया गया था

Questions No: 31/50

Identify the part of speech underlined in the sentence: The room was quite spacious.

Questions No: 32/50

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

Questions No: 33/50

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

Questions No: 34/50

Which one of the following is not a reserved keyword for C?
निम्नलिखित में से कौन सी C के लिए आरक्षित कीवर्ड नहीं है?

Questions No: 35/50

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

Questions No: 36/50

 Which of the following is an imperative sentence?

Questions No: 37/50

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

Questions No: 38/50

In an assignment statement a=b; which of the following statement is true?
असाइनमेंट स्टेटमेंट में a = b; निम्नलिखित में से कौन सा कथन सत्य है?

Questions No: 39/50

What is the size of the int data type (in bytes) in C?

Questions No: 40/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: 41/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: 42/50

Which keyword is used to prevent any changes in the variable within a C program?
C प्रोग्राम के भीतर variable में किसी भी परिवर्तन को रोकने के लिए किस कीवर्ड का उपयोग किया जाता है?

Questions No: 43/50

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

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

Raj said that he wanted an ice-cream. Which is the correct direct speech for this sentence?

Questions No: 46/50

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

Questions No: 47/50

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

Questions No: 48/50

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

Questions No: 49/50

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

Questions No: 50/50

Which header file is necessary for using the malloc function?