Quiz-1

Q 1. Which combination is the jump statement? / कौन सा संयोजन जम्प स्टेटमेंट नहीं है?

  1. break, continue, void, for
  2. volatile, break, return, void
  3. goto, continue, break, return
  4. void, struct, return, goto
View Answer Watch Solution Video

Q 2. Which combination is showing iteration statements? / कौन सा संयोजन पुनरावृत्ति कथन दिखा रहा है?

  1. if, else, for, while, switch, case
  2. if, else, switch, case, default
  3. for, do, while
  4. both b and c
View Answer Watch Solution Video

Q 3. Which keyword is not related to storage classes? / कौन सा कीवर्ड स्टोरेज क्लासेस से संबंधित नहीं है?

  1. extern
  2. const
  3. register
  4. static
View Answer Watch Solution Video

Q 4. Which keywords are representing user-defined data types in C? / C में कौन से कीवर्ड उपयोगकर्ता-परिभाषित डेटा प्रकारों का प्रतिनिधित्व कर रहे हैं?

  1. int, char, float, double
  2. short, signed, unsigned, long
  3. struct, union, enum, typedef
  4. both a and b
View Answer Watch Solution Video

Q 5. Which keywords are representing primitive data types in C? / C में कौन से कीवर्ड प्रिमिटिव डेटा प्रकारों का प्रतिनिधित्व कर रहे हैं?

  1. int, char, float, double
  2. short, signed, unsigned, long
  3. struct, union, enum
  4. Both a and b
View Answer Watch Solution Video

Q 6. Which keywords are representing data types in C? / C में कौन से कीवर्ड डेटा प्रकारों का प्रतिनिधित्व कर रहे हैं?

  1. int, char, float, double
  2. short, signed, unsigned, long
  3. struct, union, enum
  4. All of the above

Q 7. Find a correct C Keyword. / एक सही सी कीवर्ड खोजें।

  1. Float
  2. Int
  3. Long
  4. double
View Answer Watch Solution Video

Q 8. Find a correct C Keyword below. / नीचे एक सही सी कीवर्ड खोजें।

  1. Work
  2. case
  3. Constant
  4. permanent
View Answer Watch Solution Video

Q 9. Identify wrong C Keywords below. / नीचे गलत C कीवर्ड्स को पहचानें।

  1. static, while, break, goto
  2. struct, construct, signed, unsigned
  3. short, long, if, else
  4. return, enum, struct, do
View Answer Watch Solution Video

Q 10. Which statement is false about C keywords? / C कीवर्ड के बारे में कौन सा कथन गलत है?

  1. We have 32 keywords in C language. / हमारे पास C भाषा में 32 कीवर्ड हैं।
  2. Keywords are not the part of tokens in C language. / कीवर्ड सी भाषा में टोकन का हिस्सा नहीं हैं।
  3. Keywords can only be written in lowercase. / कीवर्ड केवल लोअरकेस में ही लिखे जा सकते हैं।
  4. Keywords cannot be used as identifiers. / खोजशब्दों का उपयोग पहचानकर्ता के रूप में नहीं किया जा सकता है।
View Answer Watch Solution Video