Quiz-1

Q 1. What will be the output of the following C code? / निम्नलिखित C कोड का आउटपुट क्या होगा?
enum hello
{
a,b,c
};
main()
{
enum hello m;
printf("%d",m);
}

  1. 1
  2. 2
  3. Error

Q 2. What will be the output of the following C code? / निम्नलिखित C कोड का आउटपुट क्या होगा?
enum fliqi
{
a,b,c=5
};
int main()
{
enum fliqi s;
b=10;
printf("%d",b);
}

  1. Error
  2. 10
  3. 1
  4. 4

Q 3. What will be the output of the following C code? / निम्नलिखित C कोड का आउटपुट क्या होगा?
enum fliqi
{
a=1,b,c,d,e
};
int main()
{
printf("%d",b*c+e-d);
}

  1. Error
  2. 7
  3. 2
  4. 4

Q 4. How are the constant declared ? / स्थिरांक कैसे घोषित किया जाता है?
 

  1. const keyword
  2. #define preprocessor
  3. both const keyword and #define preprocessor
  4. $define

Q 5. What are the parts of the literal constants .? / शाब्दिक स्थिरांक के भाग क्या हैं?
 

  1. integer numerals
  2. floating point numerals
  3. string & boolean numerals
  4. all of the mentioned

Q 6. The constants are also called as---------  / स्थिरांक को ---------- भी कहा जाता है

  1. const
  2. preprocessor
  3. literals
  4. variable

Q 7. If we do not explicitly assign values to enum names, the compiler by default assigns values to ? / यदि हम स्पष्ट रूप से एनम नामों के लिए मान निर्दिष्ट नहीं करते हैं, तो संकलक डिफ़ॉल्ट रूप से मान निर्दिष्ट करता है?

  1. null
  2. -1
  3. Garbage

Q 8. Enumeration (or enum) is a ______ data type in C? / सी में एन्यूमरेशन (या एनम) एक ______ डेटा प्रकार है?

  1. user defined
  2. built-in
  3. library
  4. None Of the above

Q 9. String handling functions such as strcmp(), strcpy() etc can be used with enumerated types. / स्ट्रिंग हैंडलिंग फ़ंक्शंस जैसे कि strcmp (), strcpy () आदि का उपयोग एन्यूमरेटेड प्रकारों के साथ किया जा सकता है।

  1. True
  2. False
  3. May be
  4. May be not

Q 10. A user defined data type, which is used to assign names to integral constants is called ____________ / एक उपयोगकर्ता परिभाषित डेटा प्रकार, जिसका उपयोग अभिन्न स्थिरांक को नाम निर्दिष्ट करने के लिए किया जाता है, _________ कहलाता है

  1. Union
  2. Array
  3. Structure
  4. Enum