Quiz-1

Q 1. What is the range of long double data type in C Programming? / C प्रोग्रामिंग में लॉन्ग डबल डेटा टाइप की रेंज क्या है?

  1. 0 to 4294967295
  2. -3.4e38 to +3.4e38
  3. -1.7e308 to +1.7e308
  4. -1.7e4932 to +1.7e4932

Q 2. What is the range of long signed int data type in C Programming? / C प्रोग्रामिंग में लंबे समय से हस्ताक्षरित इंट डेटा प्रकार की सीमा क्या है?

  1. -32768 to +32767
  2. 0 to 65535
  3. -2147483648 to +2147483647
  4. 0 to 4294967295

Q 3. How many byte(s) reserved by unsigned int in C programming? / C प्रोग्रामिंग में अहस्ताक्षरित int द्वारा कितने बाइट आरक्षित हैं?

  1. 1 byte
  2. 2 bytes
  3. 4 bytes
  4. 8 bytes

Q 4. How many byte(s) reserved by signed char in C programming? / सी प्रोग्रामिंग में हस्ताक्षरित चार द्वारा कितने बाइट आरक्षित हैं?

  1. 1 byte
  2. 2 bytes
  3. 4 bytes
  4. 8 bytes

Q 5. What is the range of short signed int data type in C Programming? / C प्रोग्रामिंग में लघु हस्ताक्षरित इंट डेटा प्रकार की सीमा क्या है?

  1. -128 to + 127
  2. 0 to 255
  3. -32768 to +32767
  4. 0 to 65535

Q 6. What is short int in C programming? / C प्रोग्रामिंग में शॉर्ट इंट क्या है?

  1. The basic data type of C
  2. Qualifier
  3. Short is the qualifier and int is the basic data type
  4. All of the mentioned

Q 7. *@Ac# is a type of ________________ data. / *@Ac# एक प्रकार का _________ डेटा है।

  1. Symbolic
  2. Alphanumeric
  3. Alphabetic
  4. Numeric

Q 8. Range of float data type is:- / फ्लोट डेटा प्रकार की रेंज है-

  1. -3.2e38 to +3.2e38
  2. -3.8e32 to +3.8e32
  3. -3.4e34 to +3.4e34
  4. -3.4e38 to +3.4e38

Q 9. Size of a GCC or Visual Studio C Compiler is:- / जीसीसी या विजुअल स्टूडियो सी कंपाइलर का आकार है: -

  1. 16 bit
  2. 32 bit
  3. 64 bit
  4. 128 bit

Q 10. What is the output of this program? / निम्नलिखित C कोड का आउटपुट क्या होगा?
int main()
{
char ch;
ch = 128;
printf("%d", ch);
return 0;
}

  1. 128
  2. -128
  3. Depends on compiler
  4. None of the above