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
- 2
- 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);
}
- Error
- 10
- 1
- 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);
}
- Error
- 7
- 2
- 4
Q 4.
How are the constant declared ? / स्थिरांक कैसे घोषित किया जाता है?
- const keyword
- #define preprocessor
- both const keyword and #define preprocessor
- $define
Q 5.
What are the parts of the literal constants .? / शाब्दिक स्थिरांक के भाग क्या हैं?
- integer numerals
- floating point numerals
- string & boolean numerals
- all of the mentioned
Q 6. The constants are also called as--------- / स्थिरांक को ---------- भी कहा जाता है
- const
- preprocessor
- literals
- variable
Q 7. If we do not explicitly assign values to enum names, the compiler by default assigns values to ? / यदि हम स्पष्ट रूप से एनम नामों के लिए मान निर्दिष्ट नहीं करते हैं, तो संकलक डिफ़ॉल्ट रूप से मान निर्दिष्ट करता है?
- null
- -1
- Garbage
Q 8. Enumeration (or enum) is a ______ data type in C? / सी में एन्यूमरेशन (या एनम) एक ______ डेटा प्रकार है?
- user defined
- built-in
- library
- None Of the above
Q 9. String handling functions such as strcmp(), strcpy() etc can be used with enumerated types. / स्ट्रिंग हैंडलिंग फ़ंक्शंस जैसे कि strcmp (), strcpy () आदि का उपयोग एन्यूमरेटेड प्रकारों के साथ किया जा सकता है।
- True
- False
- May be
- May be not
Q 10. A user defined data type, which is used to assign names to integral constants is called ____________ / एक उपयोगकर्ता परिभाषित डेटा प्रकार, जिसका उपयोग अभिन्न स्थिरांक को नाम निर्दिष्ट करने के लिए किया जाता है, _________ कहलाता है
- Union
- Array
- Structure
- Enum