Quiz-1

Q 1. The C- preprocessors are specified with____ symbol? / c प्रोसेसर किस सिम्बल से प्रारम्भ होता है

  1. #
  2. $
  3. " "
  4. &

Q 2. #include <stdio.h> is__?

  1. Preprocessor directive
  2. Inclusion directive
  3. File inclusion directive
  4. None of the above

Q 3. which of the following typecasting is accepted by C language ? / निम्नलिखित में से कौन सी टाइपकास्टिंग C भाषा द्वारा स्वीकार की जाती है

  1. Widening Conversions
  2. Narrowing Conversions
  3. Widening & Narrowing Conversions
  4. None of the above

Q 4. for loop in a c program, if the conditional is missing? / सी प्रोग्राम में लूप के लिए, यदि सशर्त गुम है?
 

  1. it is assumed to be present and taken to be false
  2. it is assumed to be present and taken to the true
  3. it results in a syntax error
  4. execution will be terminated abrupt

Q 5. Switch statement accepts/ स्विच स्टेटमेंट स्वीकार करता है

  1. int
  2. char
  3. long
  4. All of the above

Q 6. what is the meaning of using static before function declaration? / फ़ंक्शन घोषणा से पहले स्थिर का उपयोग करने का अर्थ क्या है
Static int demo (int a, int b)
{
return (a + b);
}

  1. Access to static functions is restricted to the file where they are declared
  2. Static means nothing, sum() is Same without static keyword
  3. function need not to be declared before its use
  4. None of the above

Q 7. Consider the following statement/ निम्नलिखित कथन पर विचार करें
int a= 2, b= 3, c= 4;
a= (b++) + c;
b = a + ( + + c);
what are the values of a, b, and c respectively?/ क्रमशः a, b और c के मान क्या हैं?

  1. 8, 12,5
  2. 8, 13, 5
  3. 7, 12, 5
  4. 7, 11, 5

Q 8. The operator && in 'c' language/ ऑपरेटर && 'c' भाषा में

  1. OR operator
  2. NOT operator
  3. AND operator
  4. None of the above

Q 9. which bitwise operator is suitable for turning on a particular bit in a number?/ किसी संख्या में किसी विशेष बिट को चालू करने के लिए कौन सा बिटवाइज़ ऑपरेटर उपयुक्त है?

  1. && operator
  2. & operator
  3. || operator
  4. ! operator

Q 10. The maximum value that an integer Constant can have is-/ एक पूर्णांक स्थिरांक का अधिकतम मान हो सकता है?

  1. -32767
  2. 32767
  3. 1.7014e +38
  4. - 1.7014e + 38