O Level Python Paper July 2023
निम्नलिखित भाषा प्रकारों को उनके उदाहरणों से सुमेलित कीजिए।
Match the following language types with their examples.
Language Type Example
1. Interpreted Programming Language a. HTML, SGML, XML
2. Markup Programming Language b. PHP, Apple Script, JavaScript
3. Object-Oriented Programming Language c. Python, BASIC, Lisp
4. Scripting Programming Language d. C++, Ada, Java, Python
पायथन इंटरप्रेटर को पायथन शेल के रूप में जाना जाता है जो कोड को पढ़ता है और निष्पादित करता है। यह निष्पादन के ______ तरीके प्रदान करता है।
Python Interpreter is known as python shell that reads and executes code. It provides ______ modes of Execution.
DO…WHILE एग्जिट चेक किया गया लूप है, इसका मतलब है कि लूप को कम से कम _____ निष्पादित किया जाएगा।
DO…WHILE is exit checked loop, it means the loop will be executed at least _____.
निम्नलिखित में से कौन सी कंप्यूटर की ऑब्जेक्ट ओरिएंटेड प्रोग्रामिंग भाषा है?
Which of the following is an Object Oriented Programming Language of Computer?
निम्नलिखित में से कौन सी विधि तीसरे वेरिएबल का उपयोग किए बिना दो वेरिएबल a और b को स्वैप करती है?
Which of the following methods swaps two variables a and b without using a third variable?
Python में single-line comments देने के लिए निम्नलिखित में से किस character का उपयोग किया जाता है?
Which of the following character is used to give single-line comments in Python?
नम्पी के बारे में कौन सा गलत कथन है?
Which is wrong statement about Numpy?
पायथन में NumPy को संदर्भित करने के लिए आमतौर पर किस प्रतीक का उपयोग किया जाता है?
Which symbol is commonly used to refer to NumPy in Python?
यदि a, b, c = 3, 4, 1 है तो Math.sqrt(b)*a-c का मान क्या होगा?
If a, b, c = 3, 4, 1 then what will be the value of math.sqrt(b)*a-c?
बिजली बंद होने पर भी ________ में डेटा नष्ट नहीं होता है।
The data in ________ is not lost even if power is switched off.
[::-1] स्लाइसिंग ऑपरेशन कोड print("Hello world"[::-1]) में क्या करता है?
What does the [::-1] slicing operation do in the code print("Hello world"[::-1])?
print("hello, world"[-6])`?का आउटपुट क्या है?
What is the output of `print("hello, world"[-6])`?
पायथन में NumPy को आयात करने का सही तरीका निम्नलिखित में से कौन सा है?
Which of the following is the correct way to import NumPy in Python?
निम्नलिखित अभिव्यक्ति का आउटपुट क्या होगा
What will be the output of following expression:
print(10/2+3*5)
पायथन के संदर्भ में सही कथन क्या हैं/हैं?
What is /are correct statements in context of python?
आप पायथन में एक मॉड्यूल को पुनः कैसे लोड कर सकते हैं?
How can you reload a module in Python?
व्यंजक 5 + 8 * ((3 * 5) - 9)/10 का आउटपुट क्या है?
What is the output of the expression 5 + 8 * ((3 * 5) - 9) / 10?
किस प्रकार का डेटा है:
What type of data is:
arr = [[1,2,3][2,3,4,5]]
Python 3.0 संस्करण में कितने कीवर्ड हैं?
How many keywords are there in Python 3.0 version?
निम्नलिखित कथनों का आउटपुट क्या होगा?
What will be the output of the following statements ?
list1 =[1,2,3,4,5]
print(list1[len(list1)-1])
किसी सूची में कोई मान मौजूद है या नहीं, इसकी जांच करने का निम्नलिखित में से कौन सा सही तरीका है?
Which of the following is the correct way to check if a value exists in a list?
इसका आउटपुट क्या है:
what is the output of:
import numpy as nd
x= nd.array([2,3,4,10,12,14,18])
print(x[:3])
किसी एल्गोरिथम का सचित्र निरूपण कहलाता है
Pictorial representation of an algorithm is called as
किसी छवि का प्रतिनिधित्व करने वाले NumPy सरणी को फिर से नमूना देने के लिए निम्नलिखित में से किस तकनीक का उपयोग किया जा सकता है?
Which of the following techniques can be used for resampling a NumPy array representing an image?
निम्नलिखित में से कौन सा precedence order पायथन में सही है?
Which of the following order of precedence is correct in fraction?
x का मान क्या है, यदि x = math.factorial(0) ?
What is the value of x, if x = math.factorial(0) ?
नकारात्मक सूचकांक `-6` स्ट्रिंग `" hello, world "` के संदर्भ में क्या दर्शाता है?
What does the negative index `-6` indicate in the context of the string `"hello, world"`?
पायथन में A *= 8 का क्या अर्थ है?
What does A *= 8 mean in Python?
निम्नलिखित में से कौन सा पायथन में एक कीवर्ड नहीं है?
Which of the following is not a Keyword in Python?
पायथन में "PVM" का क्या अर्थ है?
What does "PVM" stand for in Python?
निम्नलिखित में से कौन सा कथन अमान्य है?
Which of the following statement is invalid?
पायथन में -= किस प्रकार का ऑपरेटर है?
What type of operator is -= in Python?
यदि A = 5, तो A *= 8 के बाद A का मान क्या होगा?
If A = 5, what will be the value of A after A *= 8?
x का मान क्या है, यदि x = math.sqrt(25.0)?
What is the value of x, if x = math.sqrt(25.0) ?
ऑपरेटिंग सिस्टम में निम्नलिखित में से कौन सा ऑब्जेक्ट प्रोग्राम लोड करता है और इसे निष्पादन के लिए तैयार करता है?
Which of the following in Operating system that loads an object program and prepare it for execution ?
पायथन में सभी कीवर्ड _________ में हैं
All keywords in Python are in _________
निम्नलिखित for लूप कितनी बार निष्पादित होगा? exp: "56247839"
How many times will the following for loop execute? exp: “56247839”
निम्नलिखित में से कौन मॉड्यूलर प्रोग्रामिंग का/से लाभ है/हैं?
Which of following is/are the advantage(s) of modular programming?
फ्लो चार्ट को नए पेज से जोड़ने के लिए निम्न में से किस विकल्प का उपयोग किया जाता है?
Which of the following options is used for connecting flow chart onto a new page?
निम्नलिखित अंकगणितीय अभिव्यक्ति को क्रियान्वित करने पर क्या मान प्रदर्शित होगा?
What value will be displayed on executing the following arithmetic expression?
x = math.pow (0,-4)
पायथन में LEGB का पूर्ण रूप क्या है?
What is the full form of LEGB in Python?
फ़्लोचार्ट में कौन सी आकृति किसी निर्णय को दर्शाती है?
What shape represent a decision in a flowchart?
प्रोग्राम सबरूटीन्स को क्या कहा जाता है?
Program subroutines are called as
पायथन प्रोग्राम में व्यक्तिगत इकाई में छोटी को ___________ के रूप में जाना जाता है
The tiny in individual unit in python program is known as ___________
पायथन में, वर्णों के क्रमागत अनुक्रम को कहा जाता है:
In python, consecutive sequence of characters is known as a :
लूप में, __________ कीवर्ड का उपयोग वर्तमान पुनरावृत्ति के मुख्य भाग को छोड़ने के लिए किया जाता है
In a loop, __________ keyword is used to skip the body of the current iteration
पायथन में उपयोगकर्ता परिभाषित फ़ंक्शन कीवर्ड __ का उपयोग करके लिखे गए हैं
User defined functions in Python are written using the keyword __
किसी सारणी की रैंक उसमें मौजूद __________ की संख्या है।
The rank of an array is the number of __________it has.
एक डेटा प्रकार को जबरदस्ती दूसरे प्रकार में परिवर्तित करने की प्रक्रिया को क्या कहा जाता है?
What is the process of forcefully converting a data type into another known as?
अभिव्यक्ति (5*2 - 4*8) % 7 का आउटपुट क्या है?
What is the output of the expression (5*2 - 4*8) % 7?
NumPy में परिभाषित सबसे महत्वपूर्ण वस्तु एक N-आयामी सरणी प्रकार है जिसे कहा जाता है?
The most important object defined in NumPy is an N-dimensional array type called?
पायथन निम्नलिखित में से किस प्रोग्रामिंग भाषा पीढ़ी से संबंधित है?
Python belongs to which of the following programming language generation?
पहचान कीजिए कि दिए गए कथन सत्य हैं या असत्य।
Identify whether the given statements are true or false.
In Python programming, tuple items are ordered.
iIn Python programming, we cannot change, add or delete items once a tuple is created.
In Python programming, tuple does not give duplicate values.
शब्दकोश में मान ______ हो सकता है लेकिन शब्दकोश में कुंजियाँ ______ होनी चाहिएपाइथन प्रोग्रामिंग भाषा में
The values in a dictionary can be ______ but the keys in the dictionary should be ______ in Python programming languages.
पायथन में, मॉड्यूल केवल एक _______ एक्सटेंशन वाली फाइलें होती हैं जिनमें पायथन कोड होता है जिसे किसी अन्य पायथन प्रोग्राम के अंदर आयात किया जा सकता है।
In Python, modules are simply files with the a _______extension containing a python code that can be imported inside another Python program.
व्यंजक 34 // 5 + 34 % 5 का परिणाम क्या है?
What is the result of the expression 34 // 5 + 34 % 5?
निम्न में से किसका नाम क्लास के नाम के समान होना चाहिए?
Which of the following should have a same name as class name ?
प्रोग्रामिंग भाषा जावा ______ द्वारा विकसित की गई थी।
Programming language Java was developed by______.
NumPy सरणी का डिफ़ॉल्ट डेटाटाइप क्या है?
What is the default datatype of NumPy array?
print("Hello, world"[-6:-1]) का आउटपुट क्या होगा?
What will be the output of print("Hello, world"[-6:-1])?
_______ पायथन में कथन को स्पष्ट करने के लिए अतिरिक्त पठनीय जानकारी है।
_______ are additional readable information to clarify the statement in python.
पाइथन में पिप का क्या अर्थ है?
What does pip stand for python?
निम्नलिखित में से किसका उपयोग पायथन में लूप के रूप में नहीं किया जाता है?
Which of the following is not used as a loop in Python?
एक एल्गोरिथ्म के रूप में सबसे अच्छा वर्णन किया गया है
An algorithm is best describe as
निम्नलिखित बिट कोड का उत्पादन क्या होगा?
What would the following bit of code produce?
List = [“yellow” , “red” , “green” ,“pink”]
del list[2]
print(list)
NumPy के किस फ़ंक्शन का उपयोग सरणी बनाने के लिए किया जा सकता है?
Which function from NumPy can be used to create an array?
निम्नलिखित में से कौन सा प्रोग्राम है जो उच्च स्तरीय भाषा के प्रत्येक निर्देश का अनुवाद करता है और अगले निर्देश पर जाने से पहले उसे निष्पादित करता है?
Which of the following is a programme that translates each instruction of high-level language and executes it before passing on to the next instruction?
पायथन भाषा में, फ़ाइल खोलने के लिए निम्नलिखित में से कौन सा मोड फ़ाइल को पढ़ने और लिखने दोनों के लिए खोलता है और फ़ाइल पॉइंटर को फ़ाइल की शुरुआत में रखा जाएगा?
In Python language , which of following mode for opening the file , opens the file for both reading and writing and file pointe r will be place d at the start of the file ?
पायथन भाषा में, सूची के अंत में एक तत्व जोड़ने के लिए सूचियों की निम्नलिखित में से किस विधि का उपयोग किया जाता है?
In Python language , which of the following method of lists is use d to add an element to the end of the list?
प्रोग्रामर द्वारा मूल रूप से लिखे गए प्रोग्राम को इस प्रकार वर्गीकृत किया जाता है
Program which is written originally by the programmer is classified as
निम्नलिखित पायथन फ़ंक्शन का आउटपुट क्या होगा?
What will be the output of the following Python function?
len(["hello", 2, 4, 6])
एक डेटा प्रकार को दूसरे में बदलना कहलाता है
Changing one data type to another is known as
एक फ़ंक्शन के अंदर दूसरे फ़ंक्शन को _________ फ़ंक्शन कहा जाता है।
A function inside another function is called a _________ function.
किसी एल्गोरिथ्म की दक्षता को ________ के संदर्भ में मापा जाता है
Efficiency of an algorithm is measured in terms of ______.
एक एल्गोरिथ्म की जटिलता इसका प्रतिनिधित्व करती है
Complexity of an algorithm represents its
पुनरावर्तन को हटाने की प्रक्रिया में पुनरावर्ती फ़ंक्शन कॉल को प्रतिस्थापित करना शामिल है:
The process of removing recursion involves replacing recursive function calls with:
पायथन भाषा में .txt, .py, .CSV आदि जैसे एक्सटेंशन ______ के उदाहरण हैं।
Extensions like .txt, .py, .CSV, etc in python language are example of ______.
पायथन भाषा में प्रयुक्त पहचानकर्ता नामों के लिए निम्नलिखित में से कौन सा सही है?
Which of the following is correct for Identifiers name use d in Python language ?
फाइलों में seek() पद्धति का क्या उपयोग है?
What is the use of seek() method in files?
निम्नलिखित में से कौन सा फ़ंक्शन पायथन में एक अंतर्निहित फ़ंक्शन है?
Which of the following functions is a built-in function in python?
निम्नलिखित में से कौन-सा विकल्प पायथन प्रोग्रामिंग भाषा (Python programming language) के लिए मान्य है?
Which of the following options is valid for Python programming language?
I. An interpretation-based language
II. An object-oriented language
III. A high-level programming language
IV. A machine-dependent language
निम्नलिखित में से कौन पायथन प्रोग्रामिंग में कोर डेटा प्रकार नहीं है?
Which of the following is not a core data type in Python programming ?
प्रोग्रामर के कर्तव्यों में निम्नलिखित शामिल नहीं है
Duties of the programmer does not includes
While लूप में क्या होता है?
What does a while loop consist of?
_________ किसी प्रोग्राम की शुरुआत या समाप्ति को दर्शाता है।
__________ denotes the beginning or ending of a program.
_______ एक एकीकृत विकास वातावरण (आईडीई) है जो पायथन के साथ आता है।
A/An _______is an integrated development environment (IDE) that comes with Python .
_______ एक असामान्य स्थिति है जो प्रोग्राम निष्पादन के दौरान उत्पन्न हो सकती है, जिसे यदि ठीक से नहीं संभाला जाए तो प्रोग्राम के अप्रत्याशित व्यवहार का कारण बन सकता है।
_______ is an abnormal condition that may arise during program execution that if not handled properly may cause unexpected behaviour of the program.
_____ एक विशेष प्रकार का चर है जो किसी अन्य चर का पता रख सकता है।
A _____ is a special type of variable that can hold address of some other variable.
पायथन में, कोड ब्लॉक को कैसे निरूपित किया जाता है?
In Python, how is a code block denoted?
प्रोग्रामिंग में, कुछ कथनों को दोहराना आमतौर पर कहा जाता है
In programming, repeating some statements is usually called
NumPy सारणी में प्रसारण क्या है:
What is broadcasting in NumPy array:
ndarray में, "d" का क्या अर्थ है?
In ndarray, what does the "d" stand for?
निम्नलिखित में से किसकी अभिव्यक्ति में सर्वोच्च प्राथमिकता है?
Which one of the following has the highest precedence in the expression?
पायथन सूचियों और टुपल्स के बीच मुख्य अंतर क्या है?
What’s the main difference between Python lists and tuples?
ऑब्जेक्ट-ओरिएंटेड प्रोग्रामिंग (ओओपी) में एनकैप्सुलेशन क्या है?
What is encapsulation in object-oriented programming (OOP)?
NumPy में फोरट्रान ऑर्डर क्या है?
What is fortran order in NumPy?