Quiz-1

Q 1. What will be the storage class of variable i in the code written below? / नीचे लिखे कोड में वेरिएबल i का स्टोरेज क्लास क्या होगा?
int main()
{
            int i = 10;
            printf(“%d”, i);
            return 0;
}

  1. Automatic storage class
  2. Extern storage class
  3. Static storage class
  4. Register storage class

Q 2. What will be the output of the following program? / निम्नलिखित प्रोग्राम का आउटपुट क्या होगा?
#include < stdio.h>
static int y = 1;
int main()
{
            static int z;
printf(“%d %d”, y, z);
            return 0;
}

  1. Garbage value
  2. 0 0
  3. 1 0
  4. 1 1

Q 3. What is the output of the following program? / निम्नलिखित प्रोग्राम का आउटपुट क्या है?
int main()
{
            static int a = 3;
            printf(“%d”, a --);
            return 0;
}

  1. 0
     
  2. 1
  3. 2
  4. 3

Q 4. What is the default value of an external storage class specifier variable? / एक्सटर्न स्टोरेज क्लास स्पेसिफायर वेरिएबल की डिफ़ॉल्ट वैल्यू क्या होती है?

  1. Null
  2. Garbage
  3. Infinite

Q 5. What is the scope of extern class specifier? / एक्सटर्न क्लास स्पेसिफायर का स्कोप क्या होता है?

  1. Within block
  2. Within Program
     
  3. Global Multiple files
  4. None of the above

Q 6. how many storage classes in c? / सी में कितने स्टोरेज क्लास हैं?

  1. 2
  2. 3
  3. 4
  4. 5

Q 7. Which of the following is a keyword used for a storage class ?
स्टोरेज क्लास के लिए निम्न में से कौन सा कीवर्ड प्रयोग किया जाता है?

  1. printf
  2. externa
  3. auto
  4. scanf

Q 8. Variables of type auto, static and extern are all stored in .?
प्रकार ऑटो, स्थिर और बाहरी के चर सभी में संग्रहीत होते हैं?

  1. ROM
  2. RAM
  3. CPU
  4. Compiler

Q 9. Every C Variable must have.?
प्रत्येक C चर में होना चाहिए।

  1. Type
  2. Storage Class
  3. Both Type and Storage Class
  4. Either Type or Storage Class

Q 10. What is a C Storage Class.? / सी स्टोरेज क्लास क्या है।

  1. Storage decides where to or which memory store the variable.
  2. Storage Class decides what is the default value of a variable.
  3. Storage Class decides what is the Scope and Life of a variable.
  4. All the above.