Sequence Data Types
निम्न में से कौन सा एक invalid variable है?
Which of the following is an invalid variable?
sys.argv में प्रत्येक element का प्रकार क्या है?
What is the type of each element in sys.argv?
इनमें से कौन core डेटा टाइप नहीं है?
Which of the following is not a core data type?
यदि हम 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.
निम्न में से कौन सा डेटा प्रकार पायथन में समर्थित नहीं है ?
Which of the following data types is not supported in Python?
Python में, Mutable built-in Data-type है
In Python, Mutable is a built-in data-type.
list डाटा type के बारे में कौन सा कथन सही नहीं है ?
Which statement is not correct about list data type?
निम्नलिखित में से set डाटा type के बारे में सही कथन नहीं है ?
Which of the following is not a correct statement about set data type?
Python में user define data type है ?
What is user defined data type in Python?
इनमें से कौन core data type नहीं है?
Which of the following is not a core data type?
Python में char एक valid data type हैं |
Char is a valid data type in Python.
नीचे दिए गए कोड स्निपेट में 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))
निम्नलिखित में से कौन सा पायथन में डेटा प्रकार नहीं है?
Which of the following is not a data type in Python?
पायथन में पूर्ण संख्या को संग्रहीत करने के लिए आप किस डेटा प्रकार का उपयोग करेंगे?
What data type would you use to store a whole number in Python?
इस असाइनमेंट के बाद वेरिएबल x का डेटा प्रकार क्या होगा:
What will be the data type of the variable x after this assignment:
x = 3.5
निम्नलिखित में से कौन सा कथन टुपल बनाता है?
Which of the following statement creates a tuple?
निम्नलिखित में से कौन सा कथन सही है?
Which of the following statement is correct?
कौन सी मेमोरी वेरिएबल्स के मानों को संग्रहीत करती है।
Which memory stores the values of variables.
श्री सुबोध अपने प्रोजेक्ट के लिए पायथन में एक शब्दकोश के साथ काम कर रहे हैं। वह कुंजी और मान जोड़ी प्रदर्शित करना चाहता है लेकिन इन कथनों से भ्रमित होकर उसके लिए सही कथन चुनें:
Mr Subodh is working with a dictionary in python for his project. He wants to display the key, and value pair but confuse by these statements, choose the correct statement for him:
fromkeys() विधि डिफ़ॉल्ट रूप से शब्दकोश में कुंजी को ________ मान निर्दिष्ट करती है।
The fromkeys() method assigns ________ value to key in dictionary by default.
संक्षिप्त नामों का उपयोग करके सप्ताह के दिनों को एक दिन संख्या निर्दिष्ट करने के लिए एक शब्दकोश बनाने के लिए निम्नलिखित में से कौन सा कथन सही है?
Which one of the following is the correct statement for creating a dictionary for assigning a day number to weekdays using short names?
निम्नलिखित में से कौन सा पायथन में एक रिलेशनल ऑपरेटर है?
Which of the following is a relational operator in Python?
टुपल टी के संबंध में निम्नलिखित में से कौन सा ऑपरेशन पायथन में समर्थित है?
Which of the following operation is supported in python with respect to tuple t?
पायथन में सूचियों और टुपल्स के लिए मेमोरी आवंटन कैसे भिन्न है?
How is memory allocation for lists and tuples different in Python?
__________ SQL का पूर्ण रूप है।
__________ is a full form of SQL.
आप संख्याओं नामक सूची के दूसरे तत्व तक कैसे पहुँचते हैं?
How do you access the second element of a list named numbers?
इनमें से कौन कोर डेटा टाइप नहीं है?
Which of these is not a core data type?
निम्न में से कौन-सा अपरिवर्तनीय डेटा प्रकार है?
Which one of the following is immutable data type?
पायथन में एक चर के डेटा प्रकार को जानने के लिए निम्न में से किस फ़ंक्शन का उपयोग किया जाता है?
Which of the following function is used to know the data type of a variable in Python?
निम्नलिखित में से शब्दकोश का कौन सा फ़ंक्शन शब्दकोश से सभी कुंजियाँ प्राप्त करता है?
Which of the following function of dictionary gets all the keys from the dictionary ?
किस डेटा प्रकार में अनुक्रमण मान्य नहीं है?
In which data type, indexing is not valid ?
निम्नलिखित में से कौन सा सही है?
Which one of the following is correct ?
एक शब्दकोश पर विचार करें d = {'पहला': 1, 'दूसरा': 2, 'तीसरा': 3}। कथन का परिणाम क्या है d['दूसरा':'तीसरा']
Consider a dictionary d = {'first': 1, 'second': 2, 'third': 3}. What is the result of the statement d[' second ':' third ']
निम्नलिखित में से कौन सा एक परिवर्तनशील डेटा प्रकार है?
Which one of the following is a mutable data type ?
सूची1 में तत्व (5) जोड़ने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
Which function is used to add an element (5) in the list1 ?
नीचे दिया गया ऑब्जेक्ट किस डेटा प्रकार का है?
What data type is the object below ?
L=[1, 23, 'hello', 1]
पायथन में एक सूची को दूसरे में कैसे कॉपी करें?
How to copy one list to another in Python ?
मान लीजिए कि arr नाम वाली एक सूची में 5 तत्व हैं। आप इसका उपयोग करके सूची से दूसरा तत्व प्राप्त कर सकते हैं:
Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using :
डेटा किस प्रकार का है:
What type of data is :
arr = [(1, 1), (2, 2), (3, 3)] ?
मान लीजिए q= [3, 4, 5, 20, 5, 25, 1, 3], तो q.pop(1) के बाद q सूची के आइटम क्या होंगे?
Assume q= [3, 4, 5, 20, 5, 25, 1, 3], then what will be the items of q list after q.pop(1) ?
हम पायथन में एक खाली सूची कैसे बना सकते हैं?
How can we create an empty list in Python ?
एक सूची पर विचार करें a = [1, 2, 3, 4, 5]। उन कथनों का चयन करें जो सूची ए से मध्य तत्व 3 को हटा दें ताकि यह [1, 2, 4, 5] के बराबर हो जाए।
Consider a List a = [1, 2, 3, 4, 5]. Select the statements that remove the middle element 3 from list a so that it equals [1, 2, 4, 5]
निम्नलिखित में से किस डेटा प्रकार में, डुप्लिकेट आइटम की अनुमति नहीं है?
In which of the following data type, duplicate items are not allowed ?
निम्नलिखित में से कौन सा अपरिवर्तनीय डेटा प्रकार है?
Which one of the following is immutable data type ?
पायथन के संबंध में सही विकल्प चुनें।
Choose the correct option with respect to Python.
मान लीजिए कि एक टुपल एआरआर में 10 तत्व हैं। आप टुपल के 5वें तत्व को 'हैलो' पर कैसे सेट कर सकते हैं?
Suppose a tuple arr contains 10 elements. How can you set the 5th element of the tuple to 'Hello' ?