Important Notice:
Jan 2023 M3-R5
1 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?import numpy as npa = np.array([1,2,3,5,8])b = np.array([0,3,4,2,1])c = a + bc = c*aprint (c[2])
2 / 100
Recursive function is __________.पुनरावर्ती फ़ंक्शन __________ है.
3 / 100
What will be the output of the following code snippet ?निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?numbers = (4, 7, 19, 2, 89, 45, 72, 22)sorted_numbers = sorted(numbers)odd_numbers = [x for x in sorted_numbers if x % 2 != 0]print(odd_numbers)
4 / 100
What is ‘f’ in the following statement ?निम्नलिखित कथन में ‘f’ क्या है?f=open(“Data.txt”, “r”)
5 / 100
Structured program can be broken into __________ to assign to more than one developer.एक से अधिक डेवलपर को असाइन करने के लिए संरचित प्रोग्राम को __________ में विभाजित किया जा सकता है।
6 / 100
Flow charts and Algorithms are used for__________.फ्लो चार्ट और एल्गोरिदम का उपयोग __________के लिए किया जाता है।
7 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?print(max([1, 2, 3, 4], [4, 5, 6], [7]))
8 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?y = ‘klmn’for i in range(len(y)): print(y)
9 / 100
Which one of the following is immutable data type ?निम्नलिखित में से कौन सा अपरिवर्तनीय डेटा प्रकार है?
10 / 100
The correct extension of the Python file is____________.पायथन फ़ाइल का सही एक्सटेंशन____________ है।
11 / 100
In which format Binary file contains information ?बाइनरी फ़ाइल में किस प्रारूप में जानकारी होती है?
12 / 100
When we open file in append mode the file pointer is at the _________ of the file.जब हम फ़ाइल को एपेंड मोड में खोलते हैं तो फ़ाइल पॉइंटर फ़ाइल के _________ पर होता है।
13 / 100
Which of the following symbols is used to represent output in a flow chart ?फ्लो चार्ट में आउटपुट को दर्शाने के लिए निम्नलिखित में से किस प्रतीक का उपयोग किया जाता है?
14 / 100
Which of the following error is returned by the given code ?दिए गए कोड द्वारा निम्नलिखित में से कौन सी त्रुटि वापस आती है?>>> f = open(“test.txt”,”w”)>>> f.write(345)
15 / 100
What will be output for the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa = np.array([[1,2,3],[0,1,4]])print (a.size)
16 / 100
What will be the output of the following ?निम्नलिखित का आउटपुट क्या होगा?print(sum(1,2,3))
17 / 100
What will be the output of the following code snippet ?निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?from math import *a = 2.19b = 3.999999c = -3.30print(int(a), floor(b), ceil(c), fabs(c))
18 / 100
What will be output for the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npary = np.array([1,2,3,5,8])ary = ary + 1print (ary[1])
19 / 100
In which of the following, data is stored permanently ?निम्न में से किसमें डेटा स्थायी रूप से संग्रहित किया जाता है?
20 / 100
Which of the following functions is a built-in function in python ?निम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक अंतर्निहित फ़ंक्शन है?
21 / 100
What will be output for the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa = np.array( [2, 3, 4, 5] )print(a.dtype)
22 / 100
In python language, which of the following cannot be defined as variable ?फ्लो चार्ट और एल्गोरिदम का उपयोग __________के लिए किया जाता है।
23 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?n=5while n>0:n-=1if n ==2:continueprint(n)
24 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?import numpy as npa = np.array([1,2,3])print(a.ndim)
25 / 100
Which of the following is not an advantage of using modules ?निम्नलिखित में से कौन सा मॉड्यूल का उपयोग करने का लाभ नहीं है?
26 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?from math import *floor(11.7)
27 / 100
Which of the following is used to define a block of code in Python language ?पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
28 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?>>>list1 = [1, 3]>>>list2 = list1>>>list1[0] = 4>>>print(list2)
29 / 100
NumPY stands for :NumPY का मतलब है:
30 / 100
For performing the addition of two numbers, which of the following symbol in a flow chart are used ?दो संख्याओं का योग करने के लिए, फ्लो चार्ट में निम्नलिखित में से कौन से प्रतीक का उपयोग किया जाता है?
31 / 100
What will be the output of the following algorithm for a=5, b=8, c=6 ?a=5, b=8, c=6 के लिए निम्नलिखित एल्गोरिथम का आउटपुट क्या होगा?Step 1 : StartStep 2 : Declare variables a, b and c.Step 3 : Read variables a, b and c.Step 4 : If a < bIf a < cDisplay a is the smallest number.ElseDisplay c is the smallest number.ElseIf b < cDisplay b is the smallest number.ElseDisplay c is the smallest number.Step 5 : Stop
32 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?def func(a, b=5, c=10):print(‘a is’, a, ‘and b is’, b, ‘and c is’, c)func(13, 17)func(a=2, c=4)func(5,7,9)
33 / 100
Choose the correct function declaration of fun1() so that we can execute the following two function calls successfully.fun1() का सही फ़ंक्शन डिक्लेरेशन चुनें ताकि हम निम्नलिखित दो फ़ंक्शन कॉल को सफलतापूर्वक निष्पादित कर सकें।fun1(25, 75, 55)fun1(10, 20)
34 / 100
Which statement is correct to import all modules from the package ?पैकेज से सभी मॉड्यूलों को आयात करने के लिए कौन सा कथन सही है?
35 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?m = 0while m < 5: print(m) m += 1 if m == 3: breakelse: print(0)
36 / 100
The connector symbol for flow chart is__________.फ्लो चार्ट के लिए कनेक्टर प्रतीक_________ है।
37 / 100
What is the output of following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या है?>>>print(5*(2//3))
38 / 100
What will be output for the following code ?निम्नलिखित कोड का आउटपुट क्या होगा?import numpy as npa = np.array([1,2,3,5,8])print (a.ndim)
39 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?d1={“abc”:5,”def”:6,”ghi”:7}print(d1[0])
40 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?def power(x, y=2):r=1for i in range(y):r=r*xreturn rprint (power(3))print (power(3,3))
41 / 100
Which function is used to add an element (5) in the list1 ?List1 में elemen (5) जोड़ने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
42 / 100
Debugging is the process of fixing a _________ in the software.डिबगिंग सॉफ्टवेयर में _________ को ठीक करने की प्रक्रिया है।
43 / 100
Which of the following words is not a keyword of python language ?निम्नलिखित में से कौन सा शब्द पायथन भाषा का कीवर्ड नहीं है?
44 / 100
Which of the following declarations is incorrect ?निम्नलिखित में से कौन सी घोषणा ग़लत है?
45 / 100
Which statement will return one line from a file (file object is ‘f’) ?कौन सा कथन किसी फ़ाइल (फ़ाइल ऑब्जेक्ट 'f' है) से एक पंक्ति लौटाएगा?
46 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?a = set(‘abc’)b = set(‘cdef’)print(a&b)
47 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?from math import factorialprint(math.factorial(5))
48 / 100
Which translator is used to convert assembly language into machine language ?असेंबली भाषा को मशीनी भाषा में बदलने के लिए किस अनुवादक का उपयोग किया जाता है?
49 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?x = ‘abcd’for i in x: print(i.upper())
50 / 100
Pictorial representation of an algorithm is called as __________.किसी एल्गोरिदम के चित्रात्मक प्रतिनिधित्व को __________ कहा जाता है।
51 / 100
What will be the output of the following code snippet ?निम्नलिखित कोड स्निपेट का आउटपुट क्या होगा?d = {3, 4, 5}for k in d:print(k)
52 / 100
Python supports the creation of anonymous functions at runtime, using a construct called__________.पायथन __________ नामक निर्माण का उपयोग करके, रनटाइम पर अज्ञात फ़ंक्शन के निर्माण का समर्थन करता है।
53 / 100
In python language, which of the following operators is the correct option for raising k to the power l ?पायथन भाषा में, k को l की घात तक बढ़ाने के लिए निम्नलिखित में से कौन सा ऑपरेटर सही विकल्प है?
54 / 100
What will be the output of the following expression ?निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा?x = 14print(x>>2)
55 / 100
What is the value of the following Python code ?निम्नलिखित पायथन कोड का मान क्या है?>>>print(36 / 4)
56 / 100
The contents inside the “for loop” are separated by :“फॉर लूप” के अंदर की सामग्री को अलग किया जाता है:
57 / 100
What is the use of the zeros() function in Numpy array in python ?पायथन में Numpy array में zeros() फ़ंक्शन का उपयोग क्या है?
58 / 100
Given a string x=”hello” What is the output of x.count(‘l’) ?एक स्ट्रिंग x = "hello" दी गई है x.count(‘l’) का आउटपुट क्या है?
59 / 100
Which of the following software is required to run the hardware ?हार्डवेयर को चलाने के लिए निम्नलिखित में से किस सॉफ्टवेयर की आवश्यकता होती है?
60 / 100
Which mode creates a new file if the file does not exist ?यदि फ़ाइल मौजूद नहीं है तो कौन सा मोड एक नई फ़ाइल बनाता है?
61 / 100
Which of the following error is returned when we try to open a file in write mode which does not exist ?जब हम किसी ऐसी फाइल को राइट मोड में खोलने का प्रयास करते हैं जो मौजूद नहीं है, तो निम्नलिखित में से कौन सी त्रुटि लौटती है?
62 / 100
Choose the correct option with respect to Python.पायथन के संबंध में सही विकल्प चुनें।
63 / 100
What will following code segment print ?निम्नलिखित कोड सेगमेंट क्या प्रिंट करेगा?if True or True:if False and True or False:print(‘A’)elif False and False or True and True:print(‘B’)else:print(‘C’)else:print(‘D’)
64 / 100
What will be the output of following ?निम्नलिखित का आउटपुट क्या होगा?Y=[2,5J,6]Y.sort()
65 / 100
A _______ statement is used when a statement is required syntactically but you do not want any code to execute._______ स्टेटमेंट का उपयोग तब किया जाता है जब किसी स्टेटमेंट की वाक्य रचना की आवश्यकता होती है लेकिन आप नहीं चाहते कि कोई कोड निष्पादित हो।
66 / 100
Which symbol is used as a flowline to connect two blocks in a flow chart ?फ्लो चार्ट में दो ब्लॉकों को जोड़ने के लिए फ्लोलाइन के रूप में किस प्रतीक का उपयोग किया जाता है?
67 / 100
Which of the following will read entire content of file (file object ‘f’) ?निम्नलिखित में से कौन फ़ाइल की संपूर्ण सामग्री (फ़ाइल ऑब्जेक्ट 'एफ') पढ़ेगा?
68 / 100
Hierarchy in a pseudo-code can be shown by :pseudo कोड में पदानुक्रम को निम्न द्वारा दर्शाया जा सकता है:
69 / 100
What is a variable defined outside a function referred to as?किसी फ़ंक्शन के बाहर परिभाषित वेरिएबल को क्या कहा जाता है?
70 / 100
What does readlines() method return ?readlines() विधि क्या लौटाती है?
71 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?def display(b, n): while n>0: print(b, end=””) n=n-1display(‘z’, 3)
72 / 100
What is the output of following code ?निम्नलिखित कोड का आउटपुट क्या है?import numpy as npa = np.array([[1,2,3],[4,5,6]])print(a.shape)
73 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?example = “helle”example.rfind(“e”)
74 / 100
What will be the output of following statement ?निम्नलिखित कथन का आउटपुट क्या होगा?>>>”m”+”nl”
75 / 100
Which of the following will delete key-value pair for key=”tiger” in dictionary ?निम्नलिखित में से कौन सा शब्दकोष में key=”tiger” के लिए कुंजी-मान युग्म को हटा देगा?dic={“lion”:”wild”,”tiger”:”wild”,”cat”:”domestic”, “dog”.”domestic”}
76 / 100
Which of the following is not a control structure ?निम्नलिखित में से कौन सी नियंत्रण संरचना नहीं है?
77 / 100
f.read(5) will read __________ from a file (file object ‘f’).f.read(5) एक फ़ाइल (फ़ाइल ऑब्जेक्ट 'f') से __________ पढ़ेगा।
78 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?def s(n1): print(n1) n1 = n1 +2n2=4s(n2)print(n2)
79 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?tuple1=(5,1,7,6,2)tuple1.pop(2)print(tuple1)
80 / 100
In which software development phase quality of software is documented ?किस सॉफ्टवेयर विकास चरण में सॉफ्टवेयर की गुणवत्ता का दस्तावेजीकरण किया जाता है?
81 / 100
__________ function returns the current position of file pointer.__________ फ़ंक्शन फ़ाइल पॉइंटर की वर्तमान स्थिति लौटाता है।
82 / 100
A _____________ stores information in the form of a stream of ASCII or Unicode characters i.e. human readable.एक _____________ ASCII या यूनिकोड वर्णों की एक धारा के रूप में जानकारी संग्रहीत करता है यानी मानव पठनीय।
83 / 100
Which of the following are valid string manipulation functions in Python ?निम्नलिखित में से कौन से पायथन में वैध स्ट्रिंग मैनिपुलेशन फ़ंक्शन हैं?
84 / 100
What will be the output of the following Python code ?निम्नलिखित पायथन कोड का आउटपुट क्या होगा?len([“hello”,2, 4, 6])
85 / 100
Which function is used to write data in binary mode ?बाइनरी मोड में डेटा लिखने के लिए किस फ़ंक्शन का उपयोग किया जाता है?
86 / 100
What will be the output of the following pseudo code, where & represent And operation ?निम्नलिखित pseudo कोड का आउटपुट क्या होगा, जहां &, And ऑपरेशन को दर्शाता है?Integer a, b, cSet b = 5, a = 1c = a & bPrint c
87 / 100
What is the datatype of x ?X का डेटाटाइप क्या है?import numpy as npa=np.array([1,2,3,4])x= a.tolist()
88 / 100
What is the output of the following ?निम्नलिखित का आउटपुट क्या है?x=123for i in x: print(i)
89 / 100
What will be the output of the following pseudo code ?निम्नलिखित pseudo कोड का आउटपुट क्या होगा?Integer a, bSet a = 10, b = 5a = a mod (a - 6)b = b mod (b - 2)Print a - b
90 / 100
What is the output of the following code snippet ?निम्नलिखित कोड स्निपेट का आउटपुट क्या है?print([i.lower() for i in “HELLO”])
91 / 100
Which statement will move file pointer 10 bytes backward from current position ?कौन सा स्टेटमेंट फ़ाइल पॉइंटर को वर्तमान स्थिति से 10 बाइट पीछे ले जाएगा?
92 / 100
Kite/diamond symbol in flow chart is used for __________.फ्लो चार्ट में पतंग/हीरा प्रतीक का प्रयोग __________ के लिए किया जाता है।
93 / 100
Python is written in __________.पायथन __________ में लिखा गया है।
94 / 100
A detailed flow chart is called as __________.एक विस्तृत फ़्लो चार्ट को __________ कहा जाता है।
95 / 100
To use a module in another module, you must import it using an ________ statement.किसी मॉड्यूल को दूसरे मॉड्यूल में उपयोग करने के लिए, आपको इसे ________ कथन का उपयोग करके आयात करना होगा।
96 / 100
The brain of computer system is __________.कंप्यूटर सिस्टम का मस्तिष्क __________ है।
97 / 100
The sequence logic will not be used while__________.अनुक्रम तर्क का उपयोग तब नहीं किया जाएगा जब__________।
98 / 100
Which of the following is a valid arithmetic operator in Python ?निम्नलिखित में से कौन सा पायथन में वैध अंकगणितीय ऑपरेटर है?
99 / 100
What is the output of the following code ?निम्नलिखित कोड का आउटपुट क्या है?M=[‘b’ * x for x in range(4)]print(M)
100 / 100
What type of data is : arr = [(1, 1), (2, 2), (3, 3)] ?arr = [(1, 1), (2, 2), (3, 3)] किस प्रकार का डेटा है?
Your score is
The average score is 38%
Restart quiz