Quiz-1
Q 1. What is the range of long double data type in C Programming? / C प्रोग्रामिंग में लॉन्ग डबल डेटा टाइप की रेंज क्या है?
- 0 to 4294967295
- -3.4e38 to +3.4e38
- -1.7e308 to +1.7e308
- -1.7e4932 to +1.7e4932
Q 2. What is the range of long signed int data type in C Programming? / C प्रोग्रामिंग में लंबे समय से हस्ताक्षरित इंट डेटा प्रकार की सीमा क्या है?
- -32768 to +32767
- 0 to 65535
- -2147483648 to +2147483647
- 0 to 4294967295
Q 3. How many byte(s) reserved by unsigned int in C programming? / C प्रोग्रामिंग में अहस्ताक्षरित int द्वारा कितने बाइट आरक्षित हैं?
- 1 byte
- 2 bytes
- 4 bytes
- 8 bytes
Q 4. How many byte(s) reserved by signed char in C programming? / सी प्रोग्रामिंग में हस्ताक्षरित चार द्वारा कितने बाइट आरक्षित हैं?
- 1 byte
- 2 bytes
- 4 bytes
- 8 bytes
Q 5. What is the range of short signed int data type in C Programming? / C प्रोग्रामिंग में लघु हस्ताक्षरित इंट डेटा प्रकार की सीमा क्या है?
- -128 to + 127
- 0 to 255
- -32768 to +32767
- 0 to 65535
Q 6. What is short int in C programming? / C प्रोग्रामिंग में शॉर्ट इंट क्या है?
- The basic data type of C
- Qualifier
- Short is the qualifier and int is the basic data type
- All of the mentioned
Q 7. *@Ac# is a type of ________________ data. / *@Ac# एक प्रकार का _________ डेटा है।
- Symbolic
- Alphanumeric
- Alphabetic
- Numeric
Q 8. Range of float data type is:- / फ्लोट डेटा प्रकार की रेंज है-
- -3.2e38 to +3.2e38
- -3.8e32 to +3.8e32
- -3.4e34 to +3.4e34
- -3.4e38 to +3.4e38
Q 9. Size of a GCC or Visual Studio C Compiler is:- / जीसीसी या विजुअल स्टूडियो सी कंपाइलर का आकार है: -
- 16 bit
- 32 bit
- 64 bit
- 128 bit
Q 10.
What is the output of this program? / निम्नलिखित C कोड का आउटपुट क्या होगा?
int main()
{
char ch;
ch = 128;
printf("%d", ch);
return 0;
}
- 128
- -128
- Depends on compiler
- None of the above