Quiz-1

Q 1. Functions in C language are always / सी भाषा में फंक्शन हमेशा होते हैं?

  1. Internal
  2. External
  3. Both A and B
  4. Internal and External are not valid terms for functions

Q 2. Which of the function definition run correctly / कौन सी फंक्शन परिभाषा सही ढंग से चलती है

  1. int sum(int a, int b) {return (a + b);}
  2. int sum(a, b) return (a + b);
  3. int sum(int a, int b) return (a + b);
  4. All of the above

Q 3. what will be the output of the following code? / निम्नलिखित कोड का आउटपुट क्या होगा?
void m(int k)
{
printf("hi");
}
void m(double k)
{
printf("hello");
}
void main()
{
m(3);
}

  1. Compile time error
  2. hi
  3. hello
  4. hi hello

Q 4. What is the output of C Program with functions.? / फंक्शन के साथ C प्रोग्राम का आउटपुट क्या है?
int main()
{
show();
printf("BANK ");
return 0;
}
void show()
{
printf("CURRENCY ");
}

  1. CURRENCY BANK
  2. BANK CURRENCY
  3. BANK
  4. Compiler error

Q 5. What is the output of C Program with functions.? / फंक्शन के साथ C प्रोग्राम का आउटपुट क्या है?
void show();
int main()
{
show();
printf("ARGENTINA ");
return 0;
}
void show()
{
printf("AFRICA ");
}

  1. ARGENTINA AFRICA
  2. AFRICA ARGENTINA
  3. ARGENTINA
  4. Compiler error

Q 6. What will happened after compiling and running following code ? / निम्नलिखित कोड को संकलित करने और चलाने के बाद क्या होगा?
main()
{
printf(“%d”,main);
}

  1. Error
  2. Infinite
  3. Some address will be printed
  4. None of the these

Q 7. A function _____ / एक फ़ंक्शन _____

  1. May or may not need input data
  2. May or may not return a value
  3. Both a and b
  4. None of these

Q 8. If the function returns no value then it is called ____ / यदि फ़ंक्शन कोई मान नहीं लौटाता है तो इसे ____ कहा जाता है

  1. Data type function
  2. Calling function
  3. Main function
  4. Void function

Q 9. Types of function in C language / C भाषा में फंक्शन के प्रकार

  1. Library Function
  2. User defined function
  3. None of the above
  4. Both A and C

Q 10. Assume the output of the following code: / निम्नलिखित कोड का आउटपुट मान लें:
int x; 
void main() 

printf("%d", x); 
}

  1. Runtime error
  2. Junk Value
  3. Compile time error