Set Data Type in Python

1 / 56

The difference between the functions discard and remove is that:
फ़ंक्शंस को त्यागने और हटाने के बीच का अंतर यह है कि:

2 / 56

The ____________ function removes the first element of a set and the last element of a list.
____________ फ़ंक्शन एक सेट के पहले तत्व और एक सूची के अंतिम तत्व को हटा देता है।

3 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s1={3, 4}
s2={1, 2}
s3=set()
i=0
j=0
for i in s1:
for j in s2:
s3.add((i,j))
i+=1
j+=1
print(s3)

4 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
l=[1, 2, 4, 5, 2, 'xy', 4]
set(l)
l

5 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
a=[1, 4, 3, 5, 2]
b=[3, 1, 5, 2, 4]
a==b
set(a)==set(b)

6 / 56

The output of the following code is: class.
निम्नलिखित कोड का आउटपुट है: क्लास
type({})

7 / 56

What will be the output of the following Python function?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
{x for x in 'abc'}
{x*3 for x in 'abc'}

8 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
{a**2 for a in range(4)}

9 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
for x in set('pqr'):
print(x*2)

10 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s=set([1, 2, 3])
s.union([4, 5])
s|([4, 5])

11 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
z=set('abc')
z.add('san')
z.update(set(['p', 'q']))
z

12 / 56

What will be the output of the following Python code snippet?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
z=set('abc$de')
'a' in z

13 / 56

Which of the following functions will return the symmetric difference between two sets, x and y?
निम्नलिखित में से कौन सा कार्य दो सेट, एक्स और वाई के बीच सममित अंतर को वापस करेगा?

14 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s={4>3, 0, 3-3}
all(s)
any(s)

15 / 56

Which of the following functions cannot be used on heterogeneous sets?
निम्नलिखित में से कौन से कार्यों का उपयोग विषम सेटों पर नहीं किया जा सकता है?

16 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s={1, 2, 3}
s.update(4)
print(s)

17 / 56

Write a list comprehension for number and its cube for:
संख्या और इसके घन के लिए एक सूची समझ लिखें:
l=[1, 2, 3, 4, 5, 6, 7, 8, 9]

18 / 56

Input order is preserved in sets.
इनपुट ऑर्डर सेट में संरक्षित है।

19 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s={2, 5, 6, 6, 7}
print(s)

20 / 56

Which of the following lines of code will result in an error?
कोड की निम्न पंक्तियों में से कौन सी त्रुटि होगी?

21 / 56

Set makes use of __________
सेट __________ का उपयोग करता है
Dictionary makes use of ____________
शब्दकोश ____________ का उपयोग करता है

22 / 56

The following Python code results in an error.
निम्नलिखित पायथन कोड एक त्रुटि में परिणाम देता है।
s={2, 3, 4, [5, 6]}

23 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s=set()
type(s)

24 / 56

Is the following Python code valid?
क्या निम्नलिखित पायथन कोड मान्य है?
a={1,2,3}
b={1,2,3,4}
c=a.issuperset(b)
print(c)

25 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
a={1,2,3}
b={1,2,3}
c=a.issubset(b)
print(c)

26 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={5,6,7,8}
>>> b={7,8,9,10}
>>> len(a+b)

27 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> {x*2 for x in a|{4,5}}

28 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={5,6,7}
>>> sum(a,5)

29 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> b=frozenset([3,4,5])
>>> a-b

30 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> b=a.add(4)
>>> b

31 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> b=a.copy()
>>> b.add(4)
>>> a

32 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> b=a
>>> b.remove(3)
>>> a

33 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={1,2,3}
>>> a.intersection_update({2,3,4,5})
>>> a

34 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={3,4,5}
>>> a.update([1,2,3])
>>> a

35 / 56

Which of these about a frozenset is not true?
फ्रोजेनेट के बारे में इनमें से कौन सा सच नहीं है?

36 / 56

Is the following Python code valid?
क्या निम्नलिखित पायथन कोड मान्य है?
a={3,4,{7,5}}
print(a[2][0])

37 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={3,4,5}
>>> b={5,6,7}
>>> a|b

38 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={5,6,7,8}
>>> b={7,5,6,8}
>>> a==b

39 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> s={5,6}
>>> s*3

40 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={5,6,7,8}
>>> b={7,8,10,11}
>>> a^b

41 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={4,5,6}
>>> b={2,8,6}
>>> a-b

42 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={4,5,6}
>>> b={2,8,6}
>>> a+b

43 / 56

If a={5,6,7}, what happens when a.add(5) is executed?
यदि A = {5,6,7}, क्या होता है जब A.ADD (5) निष्पादित किया जाता है?

44 / 56

If a={5,6,7,8}, which of the following statements is false?
यदि A = {5,6,7,8}, निम्नलिखित में से कौन सा कथन गलत है?

45 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
>>> a={5,4}
>>> b={1,2,4,5}
>>> a<b

46 / 56

Which of the following statements is used to create an empty set?
खाली सेट बनाने के लिए निम्नलिखित में से कौन से कथन का उपयोग किया जाता है?

47 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
a = [5,5,6,7,7,7]
b = set(a)
def test(lst):
if lst in b:
return 1
else:
return 0
for i in filter(test, a):
print(i,end=" ")

48 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
nums = set([1,1,2,3,3,3,4,4])
print(len(nums))

49 / 56

Which of the following is not the correct syntax for creating a set?
सेट बनाने के लिए निम्नलिखित में से कौन सा सही वाक्यविन्यास नहीं है?

50 / 56

Which of these about a set is not true?
सेट के बारे में इनमें से कौन सा सच नहीं है?

51 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
x=set('abcde')
y=set('xyzbd')
x.difference_update(y)
x
y

52 / 56

What will be the output of the following Python code, if s1= {1, 2, 3}?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा, यदि S1 = {1, 2, 3}?
s1.issubset(s1)

53 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
a=set('abc')
b=set('def')
b.intersection_update(a)
a
b

54 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s1={1, 2, 3, 8}
s2={3, 4, 5, 6}
s1|s2
s1.union(s2)

55 / 56

If we have two sets, s1 and s2, and we want to check if all the elements of s1 are present in s2 or not, we can use the function:
यदि हमारे पास दो सेट हैं, तो S1 और S2, और हम यह जांचना चाहते हैं कि S1 के सभी तत्व S2 में मौजूद हैं या नहीं, हम फ़ंक्शन का उपयोग कर सकते हैं:

56 / 56

What will be the output of the following Python code?
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
s1={1, 2, 3}
s2={3, 4, 5, 6}
s1.difference(s2)
s2.difference(s1)

Your score is

The average score is 0%

0%