Module 16 : Elective-1 Programming language (Python)

Question 1What is the output of print(ʹ%x, %Xʹ % (15, 15))? | प्रिंट (ʹ% x, % Xʹ % (15, 15)) का आउटपुट क्या है?
Question 2def foo(x): x[0] = [ʹdefʹ] x[1] = [ʹabcʹ] return id(x) q = [ʹabcʹ, ʹdefʹ] print(id(q) == foo(q))
Question 3nums=list({1:ʹoneʹ,2:ʹtwoʹ}) print(nums)______
Question 4Which of the following is not used as loop in Python? | निम्नलिखित में से किसका उपयोग पायथन में लूप के रूप में नहीं किया जाता है?
Question 5What keyword would you use to add an alternative condition to an if statement? | किसी if स्टेटमेंट में वैकल्पिक कंडीशन जोड़ने के लिए आप किस कीवर्ड का उपयोग करेंगे?
Question 6What will be the output of the following Python code snippet? total={} def insert(items): if items in total: total[items] += 1 else: total[items] = 1 insert(ʹAppleʹ) insert(ʹBallʹ) insert(ʹAppleʹ) print (len(total)) | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? total={} def insert(items): if items in total: total[items] += 1 else: total[items] = 1 insert(ʹAppleʹ) insert(ʹBallʹ) insert(ʹAppleʹ) print (len(total))
Question 7Which of the following is not a core data type in Python programming? | निम्नलिखित में से कौन सा पायथन प्रोग्रामिंग में कोर डेटा टाइप नहीं है?
Question 8What will be the output of the following Python code snippet if x=1? x<<2 | निम्नलिखित पायथन कोड स्निपेट if x = 1? x<< 2 का आउटपुट क्या होगा?
Question 9Suppose d = {“john”:40, “peter”:45}, to delete the entry for “john” what command do we use? | Suppose d = {“john”:40, “peter”:45}, to delete the entry for “john” हम किस कमांड का प्रयोग करते हैं?
Question 10In Which language does Python is written? | पायथन किस भाषा में लिखा जाता है?
Question 11Which of the following is used to define a block of code in Python language? | पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Question 12What is the word (command) used to display numbers and text on the screen? | स्क्रीन पर संख्याओं और टेक्स्ट को प्रदर्शित करने के लिए प्रयुक्त वर्ड (कमांड) क्या है?
Question 13To add a new element to a list we use which Python command? | किसी सूची में नया तत्व जोड़ने के लिए हम किस पायथन कमांड का उपयोग करते हैं?
Question 14Which platform is used to develop the business application in Python? | पायथन में बिज़नेस एप्लीकेशन विकसित करने के लिए किस प्लेटफॉर्म का उपयोग किया जाता है?
Question 15Which of the following character is used to give single-line comments in Python? | पायथन में सिंगल-लाइन कमेंट देने के लिए निम्न में से किस कैरेक्टर का उपयोग किया जाता है?
Question 16Which Program code making use of a given module is? | किसी दिए गए मॉड्यूल का उपयोग करने वाला कौन सा प्रोग्राम कोड है?
Question 17Which functions are used to accept input from the user? | यूजर से इनपुट स्वीकार करने के लिए कौन से कार्यों का उपयोग किया जाता है?
Question 18def f(x): def f1(*args, **kwargs): print(ʺSanfoundryʺ) return x(*args, **kwargs) return f1
Question 19How to declare an array, you must use? | एक एरे कैसे घोषित करें, आपको इसका उपयोग करना चाहिए।
Question 20What will be the output of the following Python code snippet? >>> import collections >>> a=collections.Counter([3,3,4,5]) >>> b=collections.Counter([3,4,4,5,5,5]) >>> a&b | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? >>> import collections >>> a=collections.Counter([3,3,4,5]) >>> b=collections.Counter([3,4,4,5,5,5]) >>> a&b
Question 21Who developed the Python language? | पायथन भाषा का विकास किसने किया?
Question 22What does pip stand for python? | पायथन के लिए पिप क्या है?
Question 23How to use a control structure, in a Python program? | पायथन प्रोग्राम में कण्ट्रोल स्ट्रक्चर का उपयोग कैसे करें?
Question 24Which one of the following has the highest precedence in the expression? | निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च पूर्वता है?
Question 25What will be the output of the following Python code? i = 0 while i < 5: print(i) i += 1 if i == 3: break else: print(0) | निम्नलिखित पायथन कोड का आउटपुट क्या होगा? i = 0_x000D_ while i < 5:_x000D_ print(i)_x000D_ i += 1_x000D_ if i == 3:_x000D_ break_x000D_ else:_x000D_ print(0)
Question 26i=5 if i>11 : print (ʺi is greater than 11ʺ) | i=5 यदि i>11 : print (ʺi is greater than 11ʺ)
Question 27What will be the output of given Python code? str1=ʺhelloʺ c=0 for x in str1: if(x!=ʺlʺ): c=c+1 else: pass print(c) | दिए गए पायथन कोड का आउटपुट क्या होगा? str1=ʺhelloʺ c=0 for x in str1: if(x!=ʺlʺ): c=c+1 else: पास प्रिंट(c)
Question 28Whether Python code compiled or interpreted? | क्या पायथन कोड संकलित या व्याख्या किया गया है?
Question 29Which of the following is the valid Python file extension? | निम्नलिखित में से कौन सा वैध पायथन फ़ाइल एक्सटेंशन है?
Question 30Which of the following Python statements will result in the output: 6? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]] | निम्नलिखित में से कौन सा पायथन कथन आउटपुट में परिणाम देगा: 6? A = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
Question 31How are data items added to an array? | किसी ऐरे में डेटा आइटम कैसे जोड़े जाते हैं?
Question 32The list.pop() function will_____
Question 33What will be the output of the following? ʹlst=[ʹPythonʹ, ʹJavaʹ, ʹC++ʹ] 1st.insert(len(L1),ʹSQLʹ) print(lst) | निम्नलिखित का आउटपुट क्या होगा? ʹlst=[ʹPythonʹ, ʹJavaʹ, ʹC++ʹ] 1st.insert(len(L1),ʹSQLʹ) print(lst)
Question 34If [ʹoneʹ, ʹfourʹ, ʹthreeʹ, ʹtwoʹ] is a list object, the sort() function will return _____.
Question 35The following is used to define a ___.d = { : , : , . . . : } | परिभाषित करने के लिए निम्नलिखित का उपयोग किया जाता है a ___.d = { : , : , . . . : }
Question 36Which one of the following is a valid Python if statement? | निम्नलिखित में से कौन सा एक मान्य Python if स्टेटमेंट है?
Question 37Which multimedia application was developed using Python? | पायथन का उपयोग करके कौन सा मल्टीमीडिया एप्लिकेशन विकसित किया गया था?
Question 38Suppose d = {“john”:40, “peter”:45}, what happens when we try to retrieve a value using the expression d[“susan”]? | Suppose d = {“john”:40, “peter”:45}, तब होता है जब हम अभिव्यक्ति का उपयोग करके कोई मान पुनः प्राप्त करने का प्रयास करते हैं d[“susan”]?
Question 39Which one of the following is not a keyword in Python language? | निम्नलिखित में से कौन सा पाइथन भाषा में एक कीवर्ड नहीं है?
Question 40In which year was the Python language developed? | पायथन भाषा का विकास किस वर्ष में हुआ था?
Question 41What will be the output of the following Python code if the system date is 18th August, 2016? tday=datetime.date.today() print(tday.month()) | निम्नलिखित पायथन कोड का आउटपुट क्या होगा यदि सिस्टम की तारीख 18 अगस्त, 2016 है? tday=datetime.date.today()_x000D_ print(tday.month())
Question 42What is the data type of print(type(0xFF))? | प्रिंट(type(0xFF)) का डेटा टाइप क्या है?
Question 43What is an array? | एक ऐरे क्या है?
Question 44Which of the following declarations is incorrect in python language? | निम्नलिखित में से कौन सी डेक्लरेशंस पायथन भाषा में गलत है?
Question 45Which of the following operators is the correct option for power(ab)? | निम्नलिखित में से कौन सा ऑपरेटर power(ab) के लिए सही विकल्प है?
Question 46x=13 if x>12 or x<15 and x==16: print(ʺGiven condition matchedʺ) else: print(ʺGiven condition did not matchʺ) | x=13_x000D_ यदि x>12 or x<15 and x==16:_x000D_ print(ʺGiven condition matchedʺ)_x000D_ else:_x000D_ print(ʺGiven condition did not matchʺ)
Question 47What will be the result after the execution of above Python code? list1=[3,2,5,7,3,6] list1.pop(3) print(list1) | उपरोक्त पायथन कोड के निष्पादन के बाद परिणाम क्या होगा? list1=[3,2,5,7,3,6]_x000D_ list1.pop(3)_x000D_ print(list1)
Question 48Select all the valid String creation in Python. | पायथन में सभी वैलिड स्ट्रिंग क्रिएशन का चयन करें।
Question 49What does the following code print to console? if True: print(1001) else: print(2002) | निम्नलिखित कोड कंसोल पर क्या प्रिंट करता है? if True:_x000D_ print(1001)_x000D_ else:_x000D_ print(2002)
Question 50Class tester: def __init__(self, id): self.id = str(id) id=ʺ224ʺ >>>temp = tester(12) >>>print(temp.id)
Question 51What will be the output of the following Python code snippet? 1)d = {ʺjohnʺ:40, ʺpeterʺ:45} 2)ʺjohnʺ in d | निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा? 1)d = {ʺjohnʺ:40, ʺpeterʺ:45} 2)ʺjohnʺ in d
Question 52a = int(input(ʺEnter an integer: ʺ)) b = int(input(ʺEnter an integer: ʺ)) if a <= 0: b = b +1 else: a = a + 1 | ʺa = int(input(ʺʺEnter an integer: ʺʺ)) b = int(input(ʺʺEnter an integer: ʺʺ)) यदि a <= 0: b = b +1 else: a = a + 1ʺ
Question 53Which one of the following has the same precedence level? | निम्नलिखित में से किसका प्रेसेडेंसी स्तर समान है?
Question 54Which of the following is true for variable names in Python? | पायथन में वेरिएबल नामों के लिए निम्न में से कौन सा सही है?