Solved - O Level Python Paper January 2024
किसी फंक्शन के अंदर परिभाषित वेरिएबल को क्या कहते हैं?
What is a variable defined inside a function referred to as?
[A] A static variable
[B] A global variable
[C] A local variable
[D] An automatic variable
Correct Answer : A local variable
"Python 3.0" में 3 का सूचकांक क्या है?
What is index of 3 in “Python 3.0”?
[A] 6
[B] 7
[C] 8
[D] Error
Correct Answer : 7
निम्नलिखित में से कौन सी पायथन प्रोग्रामिंग की विशेषता नहीं है?
Which of the below is not a feature of Python Programming?
[A] Extensible
[B] Interpreter
[C] Pointer
[D] None of the above
Correct Answer : Pointer
स्ट्रिंग "Hello World " में कौन सा सूचकांक -6 पर मौजूद है?
In String "Hello World" Which is present at index -6?
[A] whitespace( )
[B] o
[C] w
[D] Error
Correct Answer : whitespace( )
PEMDAS में E क्या है?
What is E in PEMDAS?
[A] eliminate
[B] expression
[C] exponent
[D] extract
Correct Answer : exponent
a*=8 ______ के समान है
a*=8 same as ______
[A] a=*8
[B] 8*=a
[C] a=8*8
[D] a=a*8
Correct Answer : a=a*8
फ़्लोचार्ट में एक इनपुट या आउटपुट इंस्ट्रक्शन द्वारा दर्शाया जाता है
In a flowchart an input or output instruction is represented by
[A] rectangle
[B] rhombus
[C] parallelogram
[D] circle
Correct Answer : parallelogram
फ़ंक्शन divmod(x,y), जहां 'x' और 'y' दोनों पूर्णांक हैं, का मूल्यांकन इस प्रकार किया जाता है:
The function divmod(x,y), where both 'a' and 'b' are integers is evaluated as:
[A] (x%y, x//b)
[B] (x//y, x%y)
[C] (x//y, x*y)
[D] (x/y, x%y)
Correct Answer : (x//y, x%y)
165 और 268 के बीच की सीमा में निम्नलिखित में से कौन सी एकमात्र सही फाइबोनैचि संख्या है?
Which of the following is the only correct Fibonacci number in the range between 165 and 268?
[A] 144
[B] 233
[C] 377
[D] 200
Correct Answer : 233
किसी पहचानकर्ता की अधिकतम संभव लंबाई क्या है?
What is the maximum possible length of an identifier?
[A] 16
[B] 32
[C] 64
[D] None of these above
Correct Answer : None of these above
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
print(-22 % 3)
[A] -1
[B] 1
[C] 2
[D] -2
Correct Answer : 2
इस कोड का आउटपुट क्या है:
What is the output of this code:
def add(x, y):
return x + y;
print(add(3, 4))
[A] 3
[B] 4
[C] 7
[D] Error
Correct Answer : 7
जब आप कोई फ़ाइल खोलते हैं तो डिफ़ॉल्ट मोड होता है
The default mode when you open a file is
[A] r
[B] w
[C] x
[D] a
Correct Answer : r
किस प्रकार का डेटा है: a=[[1,2,3][2,3,4,5]]?
What type of data is: a=[[1,2,3][2,3,4,5]]?
[A] Array of tuples
[B] List of tuples
[C] Tuples of lists
[D] List of lists
Correct Answer : List of lists
निम्नलिखित में से कौन सा बिटवाइज़ XOR ऑपरेटर का प्रतिनिधित्व करता है?
Which of the following represents the bitwise XOR operator?
[A] &
[B] ^
[C] |
[D] !
Correct Answer : ^
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
def sum(x):
return x * x
print(sum(4))
[A] 8
[B] 16
[C] 4
[D] Error
Correct Answer : 16
पायथन में, जब कोई फ़ाइल राइट मोड ('w') में खोली जाती है, तो फ़ाइल ऑब्जेक्ट कहाँ स्थित होगा?
In Python, when a file is opened in write mode ('w'), where will the file object be positioned?
[A] At the end of the file
[B] At the beginning of the file
[C] At the middle of the file
[D] The position is undefined
Correct Answer : At the beginning of the file
यदि A = 16 और B = 15 है तो नीचे दिए गए व्यंजक का मूल्यांकन करें।
Evaluate the expression given below if A = 16 and B = 15.
A % B // A
[A] 0.0
[B] 0
[C] 1.0
[D] 1
Correct Answer : 0
निम्नलिखित अभिव्यक्ति का परिणाम क्या होगा?
What will be the result of the following expression?
“4 + 5”
[A] 45
[B] 9
[C] 5
[D] 4
Correct Answer : 45
फ्लो चार्ट में अंडाकार आकार का उपयोग किसके लिए किया जाता है?
In flow chart Oval shape is used for?
[A] Input/Output
[B] Decision
[C] Arithmetic instruction
[D] Start/Stop
Correct Answer : Start/Stop
मान लीजिए सूची1 [2, 33, 222, 14, 25] है, list1 [:-1] क्या है?
Suppose list1 is [2, 33, 222, 14, 25], What is list1[:-1] ?
[A] [2, 33, 222, 14].
[B] Error
[C] 25
[D] [25, 14, 222, 33, 2].
Correct Answer : [2, 33, 222, 14].
पाइथन फ़ाइल को किस प्रारूप में माना जाता है
In which format python file considered
[A] giga bytes
[B] mega bytes
[C] byte
[D] bits
Correct Answer : byte
इसका आउटपुट क्या होगा: print(5&3)
what will the output of : print(5&3)
[A] 1
[B] 8
[C] True
[D] False
Correct Answer : 1
print(math.fabs(-3.4)) निष्पादित करने पर क्या प्रदर्शित होता है?
What is displayed on executing print(math.fabs(-3.4))?
[A] -3.4
[B] 3.4
[C] 3
[D] -3
Correct Answer : 3.4
फ्लो चार्ट में हीरे की आकृति दर्शाती है
Diamond shape in flow chart denotes
[A] Start
[B] Decision
[C] End
[D] Input - Output task
Correct Answer : Decision
निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following Python code snippet?
print('Ab!2'.swapcase())
[A] AB!@
[B] ab12
[C] aB!2
[D] aB1@
Correct Answer : aB!2
यदि x = math.factorial(0) है तो x का मान क्या है?
What is the value of x if x = math.factorial(0)?
[A] 0
[B] 1
[C] error
[D] none of the mentioned
Correct Answer : 1
फ़्लोचार्ट में कौन सी आकृति किसी प्रक्रिया या निर्देश को दर्शाती है?
Which shape in a flowchart represents a process or instruction?
[A] Diamond
[B] Rectangle
[C] Oval
[D] Parallelogram
Correct Answer : Rectangle
निम्नलिखित में से कौन-सी टुपल की विशेषता है/हैं?
Which of the following is/are features of tuple?
[A] Tuple is immutable
[B] Tuple is a sequence data type.
[C] In tuple, elements are enclosed in Parenthesis.
[D] All of the above
Correct Answer : All of the above
निम्नलिखित में से कौन सा पायथन फ़ाइल का सही एक्सटेंशन है?
Which one of the following is the correct extension of the Python file?
[A] .py
[B] .python
[C] .p
[D] None of these
Correct Answer : .py
______ प्रतीक का उपयोग फ्लो चार्ट me condition के लिए किया जाता है।
The ______ symbol is used for decision in flow chart.
[A] Circle
[B] Rectangle
[C] Diamond
[D] None of these
Correct Answer : Diamond
आउटपुट क्या है
What is the output
>>>max("what are you")
[A] error
[B] u
[C] t
[D] y
Correct Answer : y
निम्नलिखित पायथन कोड का आउटपुट क्या होगा?
What will be the output of the following Python code?
import numpy as np
arr = np.array([1, 2, 3])
print(arr.shape)
[A] (3,)
[B] (1, 3)
[C] (3, 1)
[D] (1, 1, 3)
Correct Answer : (3,)
कौन सा सही नहीं है?
Which is not correct?
[A] abs() returns the absolute value of an integer.
[B] divmod() returns the only remainder of integer division.
[C] max() returns the largest value among given integers.
[D] pow() raises an integer to a specified power.
Correct Answer : divmod() returns the only remainder of integer division.
निम्नलिखित स्निपेट का आउटपुट क्या है:
What is the output of following snippet:
x=10
y=3
print(divmod(x,y))
[A] (3, 1)
[B] (3, 10)
[C] (1,3)
[D] Error
Correct Answer : (3, 1)
आउटपुट क्या होगा >>>"abcd"[2:]
What will be the output >>>"abcd"[2:]
[A] a
[B] ab
[C] cd
[D] dc
Correct Answer : cd
पायथन भाषा में कोड के ब्लॉक को परिभाषित करने के लिए निम्नलिखित में से किसका उपयोग किया जाता है?
Which of the following is used to define a block of code in Python language?
[A] Indentation
[B] Key
[C] Brackets
[D] All of the mentioned.
Correct Answer : Indentation
निम्नलिखित में से किसका उपयोग दो NumPy सरणियों के डॉट उत्पाद की गणना करने के लिए किया जाता है?
Which of the following is used to compute the dot product of two NumPy arrays?
[A] dot()
[B] inner()
[C] All of the above
[D] None of the above
Correct Answer : dot()
निम्नलिखित में से कौन सा SciPy का सही उप-पैकेज नहीं है?
Which of the following is not correct sub-packages of SciPy?
[A] scipy.cluster
[B] scipy.source
[C] scipy.interpolate
[D] scipy.signal
Correct Answer : scipy.source
(-3)**2 का आउटपुट क्या है?
What is the output of (-3)**2?
[A] -9
[B] 9
[C] -6
[D] 6
Correct Answer : 9
कौन सा गणितीय कार्य है?
Which is a mathmatical Function?
[A] sqrt
[B] add
[C] rhombus
[D] ohm
Correct Answer : sqrt
pow(x,y) के लिए सही ऑपरेटर कौन सा है?
Which is the correct operator for pow(x,y)?
[A] X^y
[B] X**y
[C] X^^y
[D] None of the mentioned
Correct Answer : X**y
pip का मतलब पाइथॉन क्या है?
What does pip stand for python?
[A] Pip Installs Python
[B] Pip Installs Packages
[C] Preferred Installer Program
[D] All of the mentioned
Correct Answer : Preferred Installer Program
किसी एल्गोरिथम का सचित्र निरूपण कहलाता है
Pictorial representation of an algorithm is called as
[A] Statement
[B] Program
[C] Flow chart
[D] All the above
Correct Answer : Flow chart
निम्न में से किसका उपयोग सुन्न सरणी में अधिकतम तत्व खोजने के लिए किया जाता है
which of the following is used to find the maximum element in numpy array
[A] maximum()
[B] maxi()
[C] maxim()
[D] all()
Correct Answer : maximum()
पाइथन फ़ाइल को किस प्रारूप में माना जाता है
In which format python file considered
[A] giga bytes
[B] mega bytes
[C] byte
[D] bits
Correct Answer : byte
NumPy में परिभाषित सबसे महत्वपूर्ण वस्तु एक N-आयामी सरणी प्रकार है जिसे कहा जाता है?
The most important object defined in NumPy is an N-dimensional array type called?
[A] ndarray
[B] narray
[C] nd_array
[D] darray
Correct Answer : ndarray
कौन सा फ़ंक्शन >> ऑपरेटर को ओवरलोड करता है?
Which function overloads the >> operator?
[A] __more__()
[B] __gt__()
[C] __ge__()
[D] none of the mentioned
Correct Answer : none of the mentioned
'पायथन' प्रोग्रामिंग लैंग्वेज में निम्नलिखित में से कौन सा गलत है
Which of the following is false in ‘python’ Programming Language?
[A] underscore can be used as variable names
[B] Variable names can contain digits
[C] Variable names can contain blank spaces
[D] Capital letters can be used in variable names.
Correct Answer : Variable names can contain blank spaces
निम्नलिखित में से किस अभिव्यक्ति में eval के दौरान जबरदस्ती शामिल है?
Which of the following expressions involves coercion when eval?
[A] 4.7 – 1.5
[B] 7.9 * 6.3
[C] 1.7 % 2
[D] 3.4 + 4.6
Correct Answer : 1.7 % 2
समस्या समाधान में बुनियादी कदम क्या हैं?
What are the basic steps in problem solving?
[A] Execution, Debugging, Testing
[B] Analyzing the problem, developing an algorithm, coding, testing and debugging
[C] coding, analysis, testing, debugging
[D] debugging, coding, testing, analyzing
Correct Answer : Analyzing the problem, developing an algorithm, coding, testing and debugging
_______________ मूल्यों की अद्वितीय कुंजियों का मानचित्रण है। इसमें कुंजी-मूल्य जोड़े शामिल हैं।
_______________ is a mapping of unique keys to values. It consists of key-values pairs.
[A] List
[B] Dictionary
[C] String
[D] Tuple
Correct Answer : Dictionary
निम्नलिखित में से कौन सा precedence order पायथन में सही है?
Which of the following order of precedence is correct in fraction?
[A] Parentheses, Exponential, Multiplication, Division, Addition, Subtraction
[B] Multiplication, Division, Addition, Subtraction, Parentheses, Exponential
[C] Division, Multiplication, Addition, Subtraction, Parentheses, Exponential
[D] Exponential, Parentheses, Multiplication, Division, Addition, Subtraction
Correct Answer : Parentheses, Exponential, Multiplication, Division, Addition, Subtraction
Math.isfinite(float('inf')) द्वारा क्या लौटाया जाता है?
What is returned by math.isfinite(float(‘inf’))?
[A] True
[B] False
[C] None
[D] error
Correct Answer : False
EOL का मतलब है
EOL stands for
[A] End Of Line
[B] End Of List
[C] End of Lines
[D] End Of Location
Correct Answer : End Of Line
मान लीजिए L [2, 3, 8, 4, 5] है, L[-1] क्या है?
Suppose L is [2, 3, 8, 4, 5], What is L[-1]?
[A] 2
[B] 5
[C] 8
[D] 4
Correct Answer : 5
लूप में ब्रेक स्टेटमेंट का उद्देश्य क्या है?
What is the purpose of break statement in a loop?
[A] to continue to the next iteration of the loop
[B] premature exit from the loop
[C] leaving the loop completely
[D] repeating the loop indefinitely
Correct Answer : premature exit from the loop
निम्नलिखित अनुक्रम एक फाइबोनैचि अनुक्रम है:
The following sequence is a fibonacci sequence:
[A] 0, 1, 1, 2, 3, 5, 8, 13,…..
[B] 1,1,2,3,5,8,..
[C] Both of the above
[D] None of the above
Correct Answer : 0, 1, 1, 2, 3, 5, 8, 13,…..
कौन से अंकगणितीय ऑपरेटरों का उपयोग स्ट्रिंग्स के साथ नहीं किया जा सकता है?
What arithmetic operators cannot be used with strings?
[A] +
[B] *
[C] -
[D] All of the mentioned
Correct Answer : -
जावा एक ________ है
java is a ________
[A] low level language
[B] high level language
[C] middle level language
[D] none
Correct Answer : high level language
निम्नलिखित में से कौन सी त्रुटि दिए गए कोड द्वारा लौटाई जाती है?
Which of the following error is returned by the given code ?
>>> f = open(“test.txt”,”w”)
>>> f.write(345)
[A] Syntax Error
[B] Type Error
[C] String Error
[D] Run Time Error
Correct Answer : Type Error
निम्नलिखित कोड का आउटपुट लिखें:
Write the output of the following code :
>>> L=[‘w’,’e’,’l’,’c’,’o’,’m’,’e’]
>>> print(len(L))
[A] 7
[B] 8
[C] 9
[D] None
Correct Answer : 7
सभी निर्देश एक के बाद एक निष्पादित होते हैं।
All instructions are executed one after other.
[A] Looping
[B] Selective
[C] Sequence
[D] None
Correct Answer : Sequence
यदि x=1 है तो निम्नलिखित पायथन कोड स्निपेट का आउटपुट क्या होगा?
What will be the output of the following Python code snippet if x=1?
x<<2
[A] 8
[B] 1
[C] 2
[D] 4
Correct Answer : 4
LEGB में E का सही फुल फॉर्म क्या है?
What is the correct full form for E in LEGB?
[A] Enclosing brackets
[B] Enclosing
[C] Enclosing quotations
[D] None of the above
Correct Answer : Enclosing
Sys.argv की लंबाई कितनी है?
What is the length of sys.argv?
[A] number of arguments
[B] number of arguments + 1
[C] number of arguments – 1
[D] none of the mentioned
Correct Answer : number of arguments + 1
______________ का उपयोग छद्म कोड में पदानुक्रम दिखाने के लिए किया जाता है।
______________ is used to show hierarchy in a pseudo code.
[A] Indentation
[B] Curly Braces
[C] Round Brackets
[D] Semicolon
Correct Answer : Indentation
किसी मॉड्यूल को दूसरे मॉड्यूल में उपयोग करने के लिए, आपको इसे ________ स्टेटमेंट का उपयोग करके आयात करना होगा।
To use a module in another module, you must import it using an ________ statement.
[A] import
[B] include
[C] both (A) and (B)
[D] none of the above
Correct Answer : import
एक मॉड्यूल को एक्सटेंशन _____________ के साथ सेव किया जाता है
A module is save with extension _____________
[A] .py
[B] .pym
[C] .mpy
[D] .mps
Correct Answer : .py
list, tuple, set, dictionary को define करने के लिए किन symbol का use करते है ?
Which symbols are used to define list, tuple, set, dictionary?
[A] [ ], ( ), { }, { }
[B] [ ], { }, ( ), { ]
[C] { }, ( ), [ ], [ ]
[D] ( ), { }, [ ], ( )
Correct Answer : [ ], ( ), { }, { }
स्ट्रिंग एक _________ हो सकती है।
String can be a _________.
[A] Letter
[B] Digit
[C] Whitespace & Symbol
[D] All of the above
Correct Answer : All of the above
पायथन प्रोग्रामिंग भाषा में कितने कीवर्ड मौजूद हैं?
How many keywords present in the python programming language?
[A] 32
[B] 64
[C] 33
[D] 29
Correct Answer : 33
पायथन बाइट कोड को देखने के लिए किस मॉड्यूल का उपयोग किया जाता है?
Which is the module used to view Python Byte code?
[A] py_compile
[B] python
[C] dis
[D] opcode
Correct Answer : python
"ईओएफ" का पूर्ण रूप क्या है?
What is the full form of "EOF"?
[A] Experts on Format
[B] End of File
[C] External File
[D] Endless on Format
Correct Answer : End of File
कौन सा ऑपरेटर यह जांचता है कि कोई तत्व अनुक्रम में मौजूद है या नहीं?
Which operator checks whether an element is present in a sequence or not?
[A] membership operator
[B] identity operator
[C] assignment operator
[D] relational operator
Correct Answer : membership operator
निम्नलिखित में से किसमें डेटा स्थायी रूप से संग्रहीत किया जाता है?
In which of the following, data is stored permanently ?
[A] Variable
[B] File
[C] Both of the above
[D] None of the above
Correct Answer : File
Python में ________ एक NULL statement है|
________ is a NULL statement in Python.
[A] eval
[B] Null statement
[C] pass
[D] assert
Correct Answer : pass
पायथन में किसी फ़ंक्शन को कैसे घोषित किया जाता है?
How is a function declared in python?
[A] def function function_name():
[B] declare function function_name():
[C] def function_name():
[D] declare function_name():
Correct Answer : def function_name():
किसी सूची को पार करना _________ की सहायता से किया जा सकता है
Traversing a list can be done with the help of _________
[A] loop
[B] if
[C] if–elif
[D] None of the above
Correct Answer : loop
हम python में Numpy array का आकार(shape) कैसे बदल सकते हैं?
How can we change the size of Numpy array in python?
[A] Shape()
[B] reshape()
[C] change()
[D] ord()
Correct Answer : reshape()
पायथन भाषा में फंक्शन डिक्लेरेशन के लिए निम्नलिखित में से किस कीवर्ड का उपयोग किया जाता है?
Which of the following keywords is used for function declaration in Python language?
[A] def
[B] function_name
[C] define
[D] None of these
Correct Answer : def
यदि फ़ंक्शन के अंदर रिटर्न स्टेटमेंट का उपयोग नहीं किया जाता है, तो फ़ंक्शन वापस आ जाएगा:
If return statement is not used inside the function, the function will return:
[A] None
[B] 0
[C] Null
[D] Arbitrary Value
Correct Answer : None
NumPy मॉड्यूल कैसे इम्पोर्ट करें?
How to import NumPy module?
[A] Import numpy
[B] Import numpy as my_numpy
[C] Import numpy as np
[D] All of the above
Correct Answer : All of the above
पायथन में किसी सूची में निर्दिष्ट स्थान पर तत्व को हटाने के लिए निम्नलिखित में से किस विधि का उपयोग किया जाता है?
Which of the following methods is used to remove the element at a specified position in a list in Python?
[A] remove()
[B] pop()
[C] delete()
[D] discard()
Correct Answer : pop()
सुन्न सरणी की विशेषताएँ क्या हैं?
What are the attributes of numpy array ?
[A] shape, dtype, ndim
[B] objects, type, list
[C] objects, non vectorization
[D] Unicode and shape
Correct Answer : shape, dtype, ndim
pickling क्या है?
What is the pickling?
[A] It is used for object serialization
[B] It is used for object deserialization
[C] None of the mentioned
[D] All of the mentioned
Correct Answer : It is used for object serialization
कौन सा फ़ंक्शन खुली हुई फ़ाइल को बंद कर देता है?
Which function closes an opened file?
[A] closefile()
[B] terminate()
[C] end()
[D] close()
Correct Answer : close()
यदि और अन्य शर्तों के बिना एक पुनरावर्ती फ़ंक्शन हमेशा की ओर ले जाएगा?
A recursive function without if and else conditions will always lead to?
[A] Finite loop
[B] Infinite loop
[C] Incorrect result
[D] Correct result
Correct Answer : Infinite loop
पायथन में खाली सेट बनाने के लिए कौन से विकल्प सही हैं?
Which options are correct to create an empty set in Python?
[A] {}
[B] []
[C] ()
[D] set()
Correct Answer : set()
Tower of Honoi puzzle को __________ के द्वारा बनाया गया|
Tower of Honoi puzzle was created by __________.
[A] Rasmus Lerdorf
[B] James gosling
[C] jolly Honoi
[D] eduvard lucas
Correct Answer : eduvard lucas
आउटपुट प्रदर्शित करने के लिए निम्नलिखित में से किस फ़ंक्शन का उपयोग किया जाता है?
Which of the following function is used to display the output?
[A] output()
[B] print()
[C] display()
[D] show()
Correct Answer : print()
पायथन में लैम्ब्डा फ़ंक्शंस का उपयोग करने का प्राथमिक लाभ क्या है?
What is the primary advantage of using lambda functions in Python?
[A] They allow for complex logic and control flow.
[B] They are easy to debug and test.
[C] They provide a concise and readable way to define short functions.
[D] They automatically handle exceptions and errors.
Correct Answer : They provide a concise and readable way to define short functions.
Python में NumPy का उद्देश्य क्या है?
What is the purpose of NumPy in Python?
[A] To do numerical calculations
[B] To do scientific computing
[C] Both A and B
[D] None of the mentioned above
Correct Answer : Both A and B
…… स्ट्रिंग्स की तरह एक अनुक्रम डेटा प्रकार है।
A …… is a sequence data type like strings.
[A] List
[B] Tuples
[C] Set
[D] Dictionary
Correct Answer : List
कौन सा कथन फ़ाइल पॉइंटर को वर्तमान स्थिति से 10 बाइट्स पीछे ले जाएगा?
Which statement will move file pointer 10 bytes backward from current position?
[A] f.seek(-10,0)
[B] f.seek(-10,1)
[C] f.seek(10,0)
[D] None of the above
Correct Answer : f.seek(-10,1)
सेट के बारे में इनमें से कौन सा सत्य नहीं है?
Which of these about a set is not true?
[A] Mutable data type
[B] Allows duplicate values
[C] Data type with unordered values
[D] Immutable data type
Correct Answer : Immutable data type
निम्नलिखित function का अध्ययन कीजिए: इस कोड का आउटपुट क्या होगा?
Study the following function: What will be the output of this code?
import math
abs(math.sqrt(36))
[A] error
[B] -6
[C] 6
[D] 6.0
Correct Answer : 6.0
निम्नलिखित में से कौन अपरिवर्तनीय हैं?
Which of the following are immutable?
[A] Number
[B] String
[C] Tuple
[D] All of the above
Correct Answer : All of the above
NumPy किसके द्वारा विकसित किया गया है?
NumPy developed by?
[A] Guido Van Rosum
[B] Travis Oliphant
[C] Wes McKinney
[D] Jim Hugunin
Correct Answer : Travis Oliphant
पायथॉन प्रोग्राम को चलाने के लिए किस कमांड का उपयोग किया जाता है?
Which is the command used to run a Python program?
[A] python
[B] py
[C] pythonr
[D] pythonrun
Correct Answer : python