Sequence Data Types

Q.1 निम्न में से कौन सा एक invalid variable है?

Which of the following is an invalid variable?

A)
B)
C)
D)

Q.2 sys.argv में प्रत्येक element का प्रकार क्या है?

What is the type of each element in sys.argv?

A)
B)
C)
D)

Q.3 इनमें से कौन core डेटा टाइप नहीं है?

Which of the following is not a core data type?

A)
B)
C)
D)

Q.4 यदि हम values को key और value के संदर्भ में store करना चाहते हैं तो हम किस data type का उपयोग करते हैं।

If we want to store values in terms of key and value then what data type do we use.

A)
B)
C)
D)

Q.5 निम्न में से कौन सा डेटा प्रकार पायथन में समर्थित नहीं है ?

Which of the following data types is not supported in Python?

A)
B)
C)
D)

Q.6 Python में, Mutable built-in Data-type है

In Python, Mutable is a built-in data-type.

A)
B)
C)
D)

Q.7 list डाटा type के बारे में कौन सा कथन सही नहीं है ?

Which statement is not correct about list data type?

A)
B)
C)
D)

Q.8 निम्नलिखित में से set डाटा type के बारे में सही कथन नहीं है ?

Which of the following is not a correct statement about set data type?

A)
B)
C)
D)

Q.9 डेटा प्रकार (1) क्या है?

What is data type (1)?

A)
B)
C)
D)

Q.10 Python में user define data type है ?

What is user defined data type in Python?

A)
B)
C)
D)

Q.11 इनमें से कौन core data type नहीं है?

Which of the following is not a core data type?

A)
B)
C)
D)

Q.12 Python में char एक valid data type हैं |

Char is a valid data type in Python.

A)
B)
C)
D)

Q.13 नीचे दिए गए कोड स्निपेट में var का डेटाटाइप क्या होगा? var = 10 print(type(var)) var = "Hello" print(type(var))

What will be the datatype of var in the code snippet below? var = 10 print(type(var)) var = "Hello" print(type(var))

A)
B)
C)
D)

Q.14 निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है?

Which of the following is not a data type in Python?

A)
B)
C)
D)

Q.15 पायथन में पूर्ण संख्या को संग्रहीत करने के लिए आप किस डेटा प्रकार का उपयोग करेंगे?

What data type would you use to store a whole number in Python?

A)
B)
C)
D)

Q.16 इस असाइनमेंट के बाद वेरिएबल x का डेटा प्रकार क्या होगा:

What will be the data type of the variable x after this assignment:

x = 3.5
A)
B)
C)
D)