Important Notice:
Jul 2022 (Set 2) M3-R5
1 / 100
Which module is to be imported for using randint( ) function ?randint() फ़ंक्शन का उपयोग करने के लिए कौन सा मॉड्यूल आयात किया जाना है?
2 / 100
What will be the output of the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?f=open("demo.txt","w+")f.write("Welcome to Python")f.seek(5)a=f.read(5)print(a)
3 / 100
A computer programme that manages and controls a computer's activity :एक कंप्यूटर प्रोग्राम जो कंप्यूटर की गतिविधि का प्रबंधन और नियंत्रण करता है:
4 / 100
What is the output of the following code ?निम्नलिखित कोड का परिणाम क्या है ?def fun(a, b=6):a=a+bprint(a)fun(5, 4)
5 / 100
Assume q= [3, 4, 5, 20, 5, 25, 1, 3], then what will be the items of q list after q.pop(1) ?मान लें q= [3, 4, 5, 20, 5, 25, 1, 3], तो q.pop(1) के बाद q सूची के आइटम क्या होंगे?
6 / 100
A process is expressed in a flowchart by __________.एक प्रक्रिया को फ्लोचार्ट में __________ द्वारा व्यक्त किया जाता है।
7 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?def iq(a,b):if(a==0):return belse:return iq(a-1,a+b)print(iq(3,6))
8 / 100
Which of the following is false about “from …. import ……” form of import?आयात के “से …. आयात ……” रूप के बारे में निम्नलिखित में से कौन सा गलत है?
9 / 100
What will be the output of the following pseudocode, where ʌ represent XOR operation ?निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा, जहां ʌ XOR ऑपरेशन को दर्शाता है?Integer a, b, cSet b = 4, a = 3c = a ^ bPrint c
10 / 100
What is the return type of following function ?निम्नलिखित फ़ंक्शन का रिटर्न प्रकार क्या है?def func1():return “mnp”,22
11 / 100
Which part of the memory does the system store the parameter and local variables of a function call ?सिस्टम मेमोरी के किस भाग में फ़ंक्शन कॉल के पैरामीटर और स्थानीय वेरिएबल्स को संग्रहीत करता है?
12 / 100
The process of drawing a flowchart for an algorithm is called __________.किसी एल्गोरिथम के लिए फ्लोचार्ट बनाने की प्रक्रिया को __________ कहा जाता है।
13 / 100
Which of the following is not a valid identifier?निम्नलिखित में से कौन सा वैध पहचानकर्ता नहीं है?
14 / 100
What is the maximum possible length of an identifier ?किसी आइडेंटिफायर की अधिकतम संभव लंबाई क्या है?
15 / 100
What will be the output of the following?निम्नलिखित का आउटपुट क्या होगा?print((range(4)))
16 / 100
What will be the output of the following Python code?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?from math import *floor(3.7)
17 / 100
What is the output ?आउटपुट क्या है?def calc(x):r=2*x**2return rprint(calc(5))
18 / 100
What is the output of the following statement ?निम्नलिखित कथन का आउटपुट क्या है?print ((2, 4) + (1, 5))
19 / 100
What will be the output of the following pseudocode ?निम्नलिखित स्यूडोकोड का आउटपुट क्या होगा?Integer a, bSet a = 9, b = 5a = a mod (a - 3)b = b mod (b – 3)Print a + b
20 / 100
What is the purpose of zeros() function used in Numpy array ?Numpy array में प्रयुक्त zeros() फ़ंक्शन का उद्देश्य क्या है?
21 / 100
__________ immediately terminates the current loop iteration.__________ तुरंत वर्तमान लूप पुनरावृत्ति को समाप्त कर देता है।
22 / 100
What is the output of below program ?नीचे दिए गए प्रोग्राम का आउटपुट क्या है?def say(message, times = 1): print(message * times)say('Hello')say('World', 5)
23 / 100
Raw data assigned to a variable is called as __________.किसी वेरिएबल को सौंपे गए कच्चे डेटा को __________ कहा जाता है।
24 / 100
Which symbol is used to write single line comment ?सिंगल लाइन कमेंट लिखने के लिए किस चिन्ह का प्रयोग किया जाता है?
25 / 100
Flowchart and algorithms are used for __________.फ्लोचार्ट और एल्गोरिदम का उपयोग __________ के लिए किया जाता है।
26 / 100
Which one is not the attribute of a file?इनमें से कौन सी विशेषता फ़ाइल की नहीं है?
27 / 100
What will be the output of the following Python code?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?from math import powprint(math.pow(2,3))
28 / 100
What value does the following expression evaluate to ?निम्नलिखित अभिव्यक्ति का मान क्या है?print(5 + 8 * ((3* 5)-9) /10)
29 / 100
In which of the following data type, duplicate items are not allowed ?निम्नलिखित में से किस डेटा प्रकार में डुप्लिकेट आइटम की अनुमति नहीं है?
30 / 100
NumPY stands for?NumPY का पूर्ण रूप क्या है?
31 / 100
What will following code segment print ?निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा?a = Trueb = Falsec = Falseif not a or b:print(1)elif not a or not b and c:print (2)elif not a or b or not b and a:print (3)else:print (4)
32 / 100
Operations to be repeated a certain number of times are done by __________.एक निश्चित संख्या में दोहराए जाने वाले ऑपरेशन __________ द्वारा किए जाते हैं।
33 / 100
Which of the following is an invalid mode ?निम्नलिखित में से कौन सा अमान्य मोड है?
34 / 100
A Python module is a file with the __________ file extension that contains valid Python code.पायथन मॉड्यूल __________ फ़ाइल एक्सटेंशन वाली एक फ़ाइल है जिसमें वैध पायथन कोड होता है।
35 / 100
Function defined to achieve some task as per the programmer’s requirement is called a __________.प्रोग्रामर की आवश्यकता के अनुसार कुछ कार्य को प्राप्त करने के लिए परिभाषित फ़ंक्शन को __________ कहा जाता है।
36 / 100
The syntax of seek() is: file_object.seek(offset [, reference_point])What does the reference_point indicate?Reference_point क्या दर्शाता है?
37 / 100
The syntax used to rename a file :फ़ाइल का नाम बदलने के लिए उपयोग किया जाने वाला सिंटैक्स:
38 / 100
The way for solving a problem step by step is known as __________.किसी समस्या को चरण दर चरण हल करने के तरीके को __________ कहा जाता है।
39 / 100
What is the symbol used to represent start and stop of a flowchart ?फ़्लोचार्ट की शुरुआत और समाप्ति को दर्शाने के लिए किस प्रतीक का उपयोग किया जाता है?
40 / 100
Which of the following variable declaration is incorrect?निम्नलिखित में से कौन सा वेरिएबल घोषणा गलत है?
41 / 100
What is the output of below program ?नीचे दिए गए प्रोग्राम का आउटपुट क्या है?def maximum(x, y):if x > y:return xelif x == y:return 'The numbers are equal'else:return yprint(maximum(2, 3))
42 / 100
What does the following code print ?निम्नलिखित कोड क्या प्रिंट करता है?if 2 + 5 == 8:print("TRUE")else:print("FALSE")print("TRUE")
43 / 100
What are the three different types of algorithm constructions ?एल्गोरिदम निर्माण के तीन अलग-अलग प्रकार क्या हैं?
44 / 100
Which statement is correct to import all modules from the package ?पैकेज से सभी मॉड्यूल आयात करने के लिए कौन सा कथन सही है?
45 / 100
Which of the following is the basic I/O connections in file ?निम्नलिखित में से कौन सा फ़ाइल में मूल I/O कनेक्शन है?
46 / 100
Which function is used to read all the characters?सभी अक्षरों को पढ़ने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
47 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?def printMax(a, b):if a > b:print(a, 'is maximum')elif a == b:print(a, 'is equal to', b)else:print(b, 'is maximum')printMax(3, 4)
48 / 100
Which function returns the strings ?कौन सा फ़ंक्शन स्ट्रिंग्स लौटाता है?
49 / 100
What is the output of >>>float(‟12.6‟)>>>float(‟12.6‟) का आउटपुट क्या है?
50 / 100
How many numbers will be printed by the following code ?निम्नलिखित कोड से कितने नंबर प्रिंट होंगे?def fun(a,b):for x in range(a,b+1):if x%3==0:print(x, end=" ")fun(100,120)
51 / 100
A function used for writing data in the binary format :बाइनरी फॉर्मेट में डेटा लिखने के लिए इस्तेमाल किया जाने वाला एक फ़ंक्शन:
52 / 100
Which of the following is not a keyword ?निम्नलिखित में से कौन सा कीवर्ड नहीं है?
53 / 100
What will be the output of the following Python program ?निम्नलिखित पायथन प्रोग्राम का आउटपुट क्या होगा?def addItem(listParam):listParam += [1]mylist = [1, 2, 3, 4]addItem(mylist)print(len(mylist))
54 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?def disp(*arg):for i in arg:print(i)disp(name="Rajat", age="20")
55 / 100
What is the output of the following code?निम्नलिखित कोड का आउटपुट क्या है?import numpy as npa = np.array([1,2,3,5,8])b = np.array([0,1,5,4,2])c = a + bc = c*aprint (c[2])
56 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?a = set('dcma')b = set('mlpc')print(a^b)
57 / 100
What is the output of the following code?निम्नलिखित कोड का आउटपुट क्या है?dict={"Joey":1,"Rachel":2}dict.update({"Phoebe":2})print(dict)
58 / 100
What is the output of the following code ?निम्नलिखित कोड का परिणाम क्या है ?a = {1: "A", 2: "B", 3: "C"}b = {4: "D", 5: "E"}a.update(b)print(a)
59 / 100
A detailed flowchart is known as :एक विस्तृत फ़्लोचार्ट को इस रूप में जाना जाता है:
60 / 100
An algorithm that calls itself directly or indirectly is called as __________.एक एल्गोरिदम जो स्वयं को प्रत्यक्ष या अप्रत्यक्ष रूप से कॉल करता है उसे __________ कहा जाता है।
61 / 100
What will be the output of the following expression ?निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?a = 2b = 8print(a | b)print(a >> 1)
62 / 100
Which of the following is not a correct mode to open a file?किसी फ़ाइल को खोलने के लिए निम्नलिखित में से कौन सा सही तरीका नहीं है?
63 / 100
What will be the output of the following?निम्नलिखित का आउटपुट क्या होगा?import numpy as npa = np.array([1,5,4,7,8])a = a + 1print(a[1])
64 / 100
What is the output of the following code ?निम्नलिखित कोड का परिणाम क्या है ?import numpy as npy = np.array([[11, 12, 13, 14], [32, 33, 34, 35]])print(y.ndim)
65 / 100
What does the following code print?निम्नलिखित कोड क्या प्रिंट करता है?x = 'mohan'for i in range(len(x)): x[i].upper()print (x)
66 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?x = 50def func (x) :x = 2func (x)print ('x is now', x)
67 / 100
What is the output of >>>‟2‟+‟3‟>>>‟2‟+‟3‟ का आउटपुट क्या है?
68 / 100
Which is the function to read the remaining lines of the file from a file object infile ?फ़ाइल ऑब्जेक्ट infile से फ़ाइल की शेष पंक्तियों को पढ़ने के लिए कौन सा फ़ंक्शन है?
69 / 100
What will be the output after the following statements?निम्नलिखित कथनों के बाद आउटपुट क्या होगा?a = 0b = 3while a + b < 8:a += 1print(a, end='')
70 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?import numpy as npprint(np.maximum([2, 3, 4], [1, 5, 2]))
71 / 100
How is a function declared in Python ?Python में किसी फ़ंक्शन को कैसे घोषित किया जाता है?
72 / 100
What will be the output of the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?f=open("demo.txt","r")print(f.tell())
73 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?import numpy as npa = np.array([[1,2,3]])print(a.shape)
74 / 100
How many arguments a Python program can accept from the command line ?एक पायथन प्रोग्राम कमांड लाइन से कितने तर्क स्वीकार कर सकता है?
75 / 100
Algorithms cannot be represented by __________.एल्गोरिदम को __________ द्वारा प्रदर्शित नहीं किया जा सकता।
76 / 100
What value does the following expression evaluate to ?निम्नलिखित अभिव्यक्ति का मान क्या है?x = 5while x < 10: print(x, end='')
77 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?import numpy as npa = np.array([[1,2,3,4], [5,6,7,8], [9,10,11,12]])print(a[2,2])
78 / 100
What will be the output of the following expression ?निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?x = 4print(x<<2)
79 / 100
How can we create an empty list in Python ?हम Python में एक खाली सूची कैसे बना सकते हैं?
80 / 100
What will be the output after the following statements?निम्नलिखित कथनों के बाद आउटपुट क्या होगा?x = 2if x < 5:print(x)else:pass
81 / 100
Which of the following executes the programming code line by line?निम्नलिखित में से कौन प्रोग्रामिंग कोड को लाइन दर लाइन निष्पादित करता है?
82 / 100
lstrip() method is used for :lstrip() विधि का उपयोग इसके लिए किया जाता है:
83 / 100
Testing is known as :परीक्षण को इस नाम से जाना जाता है:
84 / 100
Suppose a list with name arr, contains 5 elements. You can get the 2nd element from the list using :मान लीजिए कि arr नाम वाली सूची में 5 तत्व हैं। आप सूची से दूसरा तत्व इस प्रकार प्राप्त कर सकते हैं:
85 / 100
What will be the output of the following pseudo-code ?निम्नलिखित pseudo कोड का आउटपुट क्या होगा?Integer aSet a = 4doprint a + 2a = a- 1while (a not equals 0)end while
86 / 100
Which of the function takes two arguments ?इनमें से कौन सा फ़ंक्शन दो तर्क लेता है?
87 / 100
Which one of the following is a mutable data type ?निम्नलिखित में से कौन सा एक परिवर्तनशील डेटा प्रकार है?
88 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?def add(a, b):return a+5, b+5result = add(3, 2)print(result)
89 / 100
What will be output for the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa = np.array([[1,2,3],[0,1,4],[11,22,33]])print (a.size)
90 / 100
What will be the output after the following statements?निम्नलिखित कथनों के बाद क्या आउटपुट होगा?for i in range(1,6): print(i, end='') if i == 3: break
91 / 100
Which of the following language is understood by computer ?निम्नलिखित में से कौन सी भाषा कंप्यूटर द्वारा समझी जाती है?
92 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?import syssys.stdout.write('Welcome\n')sys.stdout.write('All\n')
93 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?ms = ('A', 'D', 'H', 'U', 'N', 'I', 'C')print(ms[1:4])
94 / 100
Which of the following symbol is used for input and output operations in a flow chart ?फ्लो चार्ट में इनपुट और आउटपुट ऑपरेशन के लिए निम्नलिखित में से कौन सा प्रतीक प्रयोग किया जाता है?
95 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?import numpy as npa = np.array( [2, 3, 4, 5] )b = np.arange(4)print(a+b)
96 / 100
If we open a file in write mode and file does not exists, which of the error will generate ?यदि हम किसी फ़ाइल को राइट मोड में खोलते हैं और फ़ाइल मौजूद नहीं है, तो कौन सी त्रुटि उत्पन्न होगी?
97 / 100
What will be the output of the following expression ?निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?print (7//2)print (-7//2)
98 / 100
In a flow chart, which of the following is used to test the condition ?फ्लो चार्ट में, निम्नलिखित में से किसका उपयोग स्थिति का परीक्षण करने के लिए किया जाता है?
99 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?print(int())
100 / 100
The process of finding errors in code is called as __________.कोड में त्रुटियां ढूंढने की प्रक्रिया को __________ कहा जाता है।
Your score is
The average score is 50%
Restart quiz